diff --git a/src/grammar.json b/src/grammar.json index 1a527f6..2b2f18d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -727,7 +727,7 @@ }, { "type": "PATTERN", - "value": "[eEpP]" + "value": "[eE]" }, { "type": "CHOICE", @@ -1090,7 +1090,7 @@ "members": [ { "type": "PATTERN", - "value": "[eEpP]" + "value": "[pP]" }, { "type": "CHOICE", @@ -4915,8 +4915,17 @@ "type": "FIELD", "name": "key", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] } }, { @@ -7510,6 +7519,13 @@ "type": "STRING", "value": "..." }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_annotation" + } + }, { "type": "SYMBOL", "name": "variable_declarator" @@ -7655,42 +7671,52 @@ ] }, "_reserved_identifier": { - "type": "PREC", - "value": -3, - "content": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "open" - }, - { - "type": "STRING", - "value": "module" - }, - { - "type": "STRING", - "value": "record" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "STRING", - "value": "yield" + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": -3, + "content": { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "open" + }, + { + "type": "STRING", + "value": "module" + }, + { + "type": "STRING", + "value": "record" + }, + { + "type": "STRING", + "value": "with" + }, + { + "type": "STRING", + "value": "sealed" + } + ] }, - { - "type": "STRING", - "value": "sealed" - } - ] + "named": true, + "value": "identifier" + } }, - "named": true, - "value": "identifier" - } + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "yield" + }, + "named": true, + "value": "identifier" + } + ] }, "this": { "type": "STRING", @@ -7816,6 +7842,10 @@ [ "argument_list", "record_pattern_body" + ], + [ + "yield_statement", + "_reserved_identifier" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 29a5f48..faaf4ee 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3340,6 +3340,14 @@ "type": "_unannotated_type", "named": true }, + { + "type": "annotation", + "named": true + }, + { + "type": "marker_annotation", + "named": true + }, { "type": "modifiers", "named": true diff --git a/src/parser.c b/src/parser.c index 7cde464..f4d215f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,8 +5,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1378 -#define LARGE_STATE_COUNT 405 +#define STATE_COUNT 1385 +#define LARGE_STATE_COUNT 406 #define SYMBOL_COUNT 320 #define ALIAS_COUNT 1 #define TOKEN_COUNT 138 @@ -3415,7 +3415,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [17] = 17, [18] = 18, [19] = 19, - [20] = 20, + [20] = 15, [21] = 21, [22] = 22, [23] = 23, @@ -3434,73 +3434,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [36] = 36, [37] = 37, [38] = 38, - [39] = 15, + [39] = 39, [40] = 40, [41] = 41, [42] = 42, [43] = 43, [44] = 44, [45] = 45, - [46] = 16, - [47] = 47, - [48] = 21, - [49] = 22, - [50] = 47, - [51] = 18, - [52] = 19, - [53] = 20, - [54] = 23, + [46] = 46, + [47] = 26, + [48] = 46, + [49] = 16, + [50] = 17, + [51] = 19, + [52] = 22, + [53] = 23, + [54] = 24, [55] = 25, - [56] = 26, - [57] = 27, - [58] = 28, - [59] = 29, - [60] = 30, - [61] = 31, - [62] = 32, - [63] = 33, - [64] = 34, - [65] = 35, - [66] = 36, - [67] = 37, - [68] = 38, - [69] = 15, - [70] = 40, - [71] = 41, - [72] = 42, - [73] = 43, - [74] = 44, - [75] = 45, - [76] = 16, - [77] = 21, - [78] = 22, - [79] = 47, - [80] = 18, - [81] = 19, - [82] = 20, + [56] = 27, + [57] = 28, + [58] = 29, + [59] = 30, + [60] = 31, + [61] = 32, + [62] = 33, + [63] = 34, + [64] = 35, + [65] = 36, + [66] = 37, + [67] = 38, + [68] = 39, + [69] = 40, + [70] = 41, + [71] = 42, + [72] = 43, + [73] = 44, + [74] = 45, + [75] = 26, + [76] = 46, + [77] = 16, + [78] = 17, + [79] = 19, + [80] = 15, + [81] = 21, + [82] = 22, [83] = 23, [84] = 24, [85] = 25, - [86] = 26, - [87] = 27, - [88] = 28, - [89] = 29, - [90] = 30, - [91] = 31, - [92] = 32, - [93] = 33, - [94] = 34, - [95] = 35, - [96] = 36, - [97] = 37, - [98] = 38, + [86] = 27, + [87] = 28, + [88] = 29, + [89] = 30, + [90] = 31, + [91] = 32, + [92] = 33, + [93] = 34, + [94] = 35, + [95] = 36, + [96] = 37, + [97] = 38, + [98] = 39, [99] = 40, [100] = 41, [101] = 42, [102] = 43, [103] = 44, [104] = 45, - [105] = 24, + [105] = 21, [106] = 106, [107] = 107, [108] = 108, @@ -3526,8 +3526,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [128] = 128, [129] = 129, [130] = 130, - [131] = 130, - [132] = 132, + [131] = 131, + [132] = 130, [133] = 133, [134] = 134, [135] = 135, @@ -3536,57 +3536,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [138] = 138, [139] = 139, [140] = 140, - [141] = 134, - [142] = 142, + [141] = 141, + [142] = 135, [143] = 143, [144] = 143, [145] = 145, [146] = 146, - [147] = 146, + [147] = 147, [148] = 148, [149] = 149, [150] = 150, [151] = 151, [152] = 152, - [153] = 153, + [153] = 147, [154] = 154, [155] = 155, - [156] = 155, + [156] = 156, [157] = 157, [158] = 158, [159] = 159, [160] = 160, [161] = 161, - [162] = 157, + [162] = 162, [163] = 163, [164] = 164, - [165] = 165, - [166] = 149, - [167] = 167, - [168] = 164, + [165] = 150, + [166] = 152, + [167] = 159, + [168] = 161, [169] = 169, - [170] = 146, - [171] = 148, - [172] = 150, - [173] = 152, - [174] = 153, - [175] = 154, - [176] = 164, + [170] = 156, + [171] = 157, + [172] = 154, + [173] = 150, + [174] = 152, + [175] = 147, + [176] = 161, [177] = 169, - [178] = 148, - [179] = 150, - [180] = 152, - [181] = 153, - [182] = 154, - [183] = 160, - [184] = 161, - [185] = 165, - [186] = 149, - [187] = 160, - [188] = 161, - [189] = 165, - [190] = 169, - [191] = 191, + [178] = 156, + [179] = 157, + [180] = 154, + [181] = 163, + [182] = 182, + [183] = 151, + [184] = 162, + [185] = 163, + [186] = 182, + [187] = 151, + [188] = 162, + [189] = 169, + [190] = 182, + [191] = 148, [192] = 192, [193] = 193, [194] = 194, @@ -3603,52 +3603,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 205, [206] = 206, [207] = 207, - [208] = 208, + [208] = 196, [209] = 209, [210] = 210, - [211] = 205, + [211] = 211, [212] = 212, [213] = 213, [214] = 214, - [215] = 203, - [216] = 191, + [215] = 215, + [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 213, - [222] = 222, - [223] = 223, - [224] = 192, - [225] = 193, - [226] = 226, - [227] = 201, - [228] = 194, - [229] = 195, - [230] = 196, - [231] = 197, - [232] = 198, - [233] = 199, - [234] = 222, - [235] = 223, - [236] = 202, - [237] = 200, - [238] = 204, + [221] = 215, + [222] = 199, + [223] = 200, + [224] = 205, + [225] = 225, + [226] = 195, + [227] = 227, + [228] = 210, + [229] = 211, + [230] = 212, + [231] = 213, + [232] = 214, + [233] = 233, + [234] = 216, + [235] = 217, + [236] = 218, + [237] = 219, + [238] = 220, [239] = 239, [240] = 240, - [241] = 207, - [242] = 201, - [243] = 209, - [244] = 212, - [245] = 219, - [246] = 207, - [247] = 247, - [248] = 248, - [249] = 114, - [250] = 109, - [251] = 251, + [241] = 209, + [242] = 239, + [243] = 240, + [244] = 225, + [245] = 203, + [246] = 196, + [247] = 203, + [248] = 233, + [249] = 249, + [250] = 250, + [251] = 113, [252] = 252, - [253] = 253, + [253] = 114, [254] = 254, [255] = 255, [256] = 256, @@ -3787,8 +3787,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [389] = 389, [390] = 390, [391] = 391, - [392] = 392, - [393] = 389, + [392] = 391, + [393] = 393, [394] = 394, [395] = 395, [396] = 396, @@ -3796,30 +3796,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [398] = 398, [399] = 399, [400] = 400, - [401] = 400, - [402] = 400, - [403] = 403, - [404] = 403, - [405] = 136, - [406] = 406, - [407] = 407, + [401] = 401, + [402] = 401, + [403] = 401, + [404] = 404, + [405] = 404, + [406] = 133, + [407] = 134, [408] = 408, [409] = 409, [410] = 410, [411] = 411, [412] = 412, - [413] = 412, + [413] = 413, [414] = 414, - [415] = 415, + [415] = 414, [416] = 416, - [417] = 415, + [417] = 417, [418] = 418, - [419] = 419, - [420] = 419, - [421] = 419, - [422] = 415, - [423] = 423, - [424] = 424, + [419] = 417, + [420] = 420, + [421] = 421, + [422] = 417, + [423] = 421, + [424] = 421, [425] = 425, [426] = 426, [427] = 427, @@ -3829,19 +3829,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [431] = 431, [432] = 432, [433] = 433, - [434] = 411, + [434] = 434, [435] = 435, [436] = 436, [437] = 437, - [438] = 438, + [438] = 413, [439] = 439, - [440] = 438, + [440] = 440, [441] = 441, - [442] = 442, - [443] = 427, + [442] = 440, + [443] = 443, [444] = 444, - [445] = 438, - [446] = 446, + [445] = 440, + [446] = 431, [447] = 447, [448] = 448, [449] = 449, @@ -3849,8 +3849,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [451] = 451, [452] = 452, [453] = 453, - [454] = 454, - [455] = 439, + [454] = 441, + [455] = 455, [456] = 456, [457] = 457, [458] = 458, @@ -3860,17 +3860,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [462] = 462, [463] = 463, [464] = 464, - [465] = 347, + [465] = 465, [466] = 466, [467] = 467, - [468] = 468, + [468] = 376, [469] = 469, [470] = 470, [471] = 471, - [472] = 382, + [472] = 472, [473] = 473, [474] = 474, - [475] = 475, + [475] = 274, [476] = 476, [477] = 477, [478] = 478, @@ -3884,29 +3884,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [486] = 486, [487] = 487, [488] = 488, - [489] = 489, - [490] = 428, + [489] = 430, + [490] = 490, [491] = 491, [492] = 492, [493] = 493, - [494] = 429, + [494] = 494, [495] = 495, [496] = 496, [497] = 497, [498] = 498, [499] = 499, - [500] = 500, + [500] = 429, [501] = 501, - [502] = 459, - [503] = 458, + [502] = 502, + [503] = 503, [504] = 504, [505] = 505, [506] = 506, - [507] = 460, + [507] = 455, [508] = 508, - [509] = 509, + [509] = 460, [510] = 510, - [511] = 511, + [511] = 456, [512] = 512, [513] = 513, [514] = 514, @@ -3947,16 +3947,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [549] = 549, [550] = 550, [551] = 551, - [552] = 552, + [552] = 435, [553] = 553, [554] = 554, - [555] = 555, + [555] = 434, [556] = 556, - [557] = 557, - [558] = 437, - [559] = 436, - [560] = 483, - [561] = 432, + [557] = 486, + [558] = 439, + [559] = 559, + [560] = 560, + [561] = 561, [562] = 562, [563] = 563, [564] = 564, @@ -3975,12 +3975,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [577] = 577, [578] = 578, [579] = 579, - [580] = 431, - [581] = 498, - [582] = 430, - [583] = 583, - [584] = 584, - [585] = 585, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 433, + [584] = 432, + [585] = 497, [586] = 586, [587] = 587, [588] = 588, @@ -4018,202 +4018,202 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [620] = 620, [621] = 621, [622] = 622, - [623] = 484, + [623] = 623, [624] = 624, - [625] = 509, - [626] = 626, - [627] = 505, - [628] = 468, - [629] = 613, - [630] = 626, - [631] = 631, - [632] = 631, - [633] = 614, - [634] = 610, - [635] = 618, + [625] = 625, + [626] = 505, + [627] = 503, + [628] = 487, + [629] = 629, + [630] = 630, + [631] = 613, + [632] = 487, + [633] = 474, + [634] = 629, + [635] = 624, [636] = 636, - [637] = 457, - [638] = 619, - [639] = 639, + [637] = 458, + [638] = 618, + [639] = 616, [640] = 621, - [641] = 611, - [642] = 456, + [641] = 614, + [642] = 619, [643] = 620, - [644] = 617, - [645] = 645, + [644] = 625, + [645] = 617, [646] = 622, - [647] = 612, - [648] = 615, - [649] = 616, + [647] = 623, + [648] = 648, + [649] = 615, [650] = 650, - [651] = 651, - [652] = 650, - [653] = 653, - [654] = 654, + [651] = 133, + [652] = 134, + [653] = 474, + [654] = 648, [655] = 655, - [656] = 656, + [656] = 457, [657] = 657, [658] = 658, [659] = 659, [660] = 660, - [661] = 661, + [661] = 564, [662] = 662, - [663] = 549, - [664] = 650, - [665] = 510, - [666] = 540, - [667] = 121, - [668] = 654, + [663] = 553, + [664] = 532, + [665] = 665, + [666] = 121, + [667] = 667, + [668] = 668, [669] = 669, [670] = 670, [671] = 671, - [672] = 659, - [673] = 661, - [674] = 669, - [675] = 670, - [676] = 671, - [677] = 655, - [678] = 657, - [679] = 660, - [680] = 659, - [681] = 661, - [682] = 669, - [683] = 670, - [684] = 671, - [685] = 655, - [686] = 657, - [687] = 660, - [688] = 571, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 574, - [693] = 452, - [694] = 694, - [695] = 461, + [672] = 672, + [673] = 673, + [674] = 671, + [675] = 659, + [676] = 665, + [677] = 658, + [678] = 673, + [679] = 679, + [680] = 680, + [681] = 667, + [682] = 671, + [683] = 659, + [684] = 665, + [685] = 658, + [686] = 514, + [687] = 673, + [688] = 679, + [689] = 680, + [690] = 667, + [691] = 679, + [692] = 680, + [693] = 660, + [694] = 660, + [695] = 670, [696] = 467, - [697] = 470, + [697] = 697, [698] = 698, - [699] = 699, - [700] = 700, + [699] = 514, + [700] = 564, [701] = 701, - [702] = 466, - [703] = 463, - [704] = 704, + [702] = 553, + [703] = 532, + [704] = 469, [705] = 705, [706] = 706, - [707] = 707, + [707] = 470, [708] = 708, - [709] = 709, - [710] = 710, + [709] = 459, + [710] = 473, [711] = 711, [712] = 712, [713] = 713, [714] = 714, - [715] = 451, + [715] = 715, [716] = 716, [717] = 717, - [718] = 718, + [718] = 551, [719] = 719, - [720] = 690, + [720] = 465, [721] = 721, [722] = 722, [723] = 723, [724] = 724, [725] = 725, - [726] = 721, + [726] = 726, [727] = 727, - [728] = 711, - [729] = 727, - [730] = 473, - [731] = 474, - [732] = 732, + [728] = 725, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 479, [733] = 733, - [734] = 734, - [735] = 453, + [734] = 461, + [735] = 726, [736] = 736, [737] = 737, [738] = 738, - [739] = 732, - [740] = 724, - [741] = 732, - [742] = 742, - [743] = 724, - [744] = 736, - [745] = 738, - [746] = 742, - [747] = 727, - [748] = 736, - [749] = 738, - [750] = 742, - [751] = 712, - [752] = 475, - [753] = 476, - [754] = 484, - [755] = 755, - [756] = 756, - [757] = 469, - [758] = 758, - [759] = 759, - [760] = 760, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 478, + [743] = 730, + [744] = 744, + [745] = 453, + [746] = 740, + [747] = 716, + [748] = 730, + [749] = 733, + [750] = 736, + [751] = 751, + [752] = 752, + [753] = 738, + [754] = 751, + [755] = 723, + [756] = 733, + [757] = 757, + [758] = 736, + [759] = 751, + [760] = 738, [761] = 761, [762] = 762, - [763] = 763, + [763] = 740, [764] = 764, - [765] = 468, - [766] = 136, - [767] = 767, + [765] = 765, + [766] = 477, + [767] = 466, [768] = 768, [769] = 769, - [770] = 764, - [771] = 764, + [770] = 770, + [771] = 771, [772] = 772, - [773] = 773, + [773] = 476, [774] = 774, [775] = 775, [776] = 776, [777] = 777, - [778] = 778, + [778] = 776, [779] = 779, - [780] = 780, + [780] = 776, [781] = 781, [782] = 782, [783] = 783, - [784] = 781, + [784] = 784, [785] = 785, [786] = 786, [787] = 787, - [788] = 785, + [788] = 788, [789] = 789, [790] = 787, [791] = 791, [792] = 792, [793] = 793, [794] = 794, - [795] = 540, - [796] = 510, + [795] = 795, + [796] = 796, [797] = 797, - [798] = 794, + [798] = 789, [799] = 799, - [800] = 549, + [800] = 785, [801] = 801, [802] = 802, - [803] = 571, - [804] = 794, + [803] = 803, + [804] = 804, [805] = 805, - [806] = 806, + [806] = 805, [807] = 807, - [808] = 808, + [808] = 805, [809] = 809, [810] = 810, - [811] = 807, + [811] = 810, [812] = 812, [813] = 813, [814] = 814, - [815] = 461, + [815] = 815, [816] = 816, [817] = 817, - [818] = 818, + [818] = 459, [819] = 819, [820] = 820, [821] = 821, @@ -4221,62 +4221,62 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [823] = 823, [824] = 824, [825] = 825, - [826] = 433, + [826] = 436, [827] = 827, [828] = 828, [829] = 829, [830] = 830, [831] = 831, - [832] = 469, - [833] = 829, - [834] = 435, + [832] = 832, + [833] = 833, + [834] = 834, [835] = 835, - [836] = 829, + [836] = 836, [837] = 837, [838] = 838, - [839] = 839, - [840] = 839, + [839] = 437, + [840] = 840, [841] = 841, - [842] = 838, - [843] = 843, - [844] = 843, - [845] = 845, - [846] = 841, - [847] = 442, + [842] = 831, + [843] = 466, + [844] = 844, + [845] = 831, + [846] = 846, + [847] = 847, [848] = 848, [849] = 849, [850] = 850, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, + [851] = 847, + [852] = 846, + [853] = 849, + [854] = 850, [855] = 855, - [856] = 856, + [856] = 447, [857] = 857, - [858] = 447, + [858] = 449, [859] = 859, - [860] = 855, - [861] = 850, + [860] = 860, + [861] = 861, [862] = 862, [863] = 863, - [864] = 864, - [865] = 865, - [866] = 446, - [867] = 448, - [868] = 450, - [869] = 449, - [870] = 863, - [871] = 447, - [872] = 862, - [873] = 873, - [874] = 873, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 878, + [864] = 862, + [865] = 863, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 448, + [874] = 452, + [875] = 449, + [876] = 871, + [877] = 451, + [878] = 450, [879] = 879, - [880] = 875, - [881] = 881, + [880] = 879, + [881] = 872, [882] = 882, [883] = 883, [884] = 884, @@ -4284,7 +4284,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [886] = 886, [887] = 887, [888] = 888, - [889] = 889, + [889] = 888, [890] = 890, [891] = 891, [892] = 892, @@ -4301,24 +4301,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [903] = 903, [904] = 904, [905] = 905, - [906] = 480, + [906] = 906, [907] = 907, [908] = 908, [909] = 909, [910] = 910, - [911] = 909, - [912] = 909, + [911] = 911, + [912] = 912, [913] = 913, [914] = 914, [915] = 915, [916] = 916, [917] = 917, - [918] = 918, - [919] = 919, + [918] = 911, + [919] = 911, [920] = 920, [921] = 921, [922] = 922, - [923] = 923, + [923] = 484, [924] = 924, [925] = 925, [926] = 926, @@ -4344,49 +4344,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [946] = 946, [947] = 947, [948] = 948, - [949] = 792, - [950] = 942, - [951] = 944, + [949] = 715, + [950] = 950, + [951] = 951, [952] = 952, [953] = 953, [954] = 954, [955] = 955, [956] = 956, - [957] = 948, + [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 947, - [962] = 945, + [961] = 961, + [962] = 962, [963] = 963, [964] = 964, [965] = 965, - [966] = 963, + [966] = 966, [967] = 967, - [968] = 968, + [968] = 955, [969] = 969, [970] = 970, - [971] = 971, + [971] = 959, [972] = 972, - [973] = 973, - [974] = 974, + [973] = 964, + [974] = 960, [975] = 975, [976] = 976, [977] = 977, [978] = 978, [979] = 979, - [980] = 980, + [980] = 952, [981] = 981, - [982] = 946, + [982] = 982, [983] = 983, [984] = 984, - [985] = 985, - [986] = 981, + [985] = 953, + [986] = 986, [987] = 987, [988] = 988, [989] = 989, [990] = 990, - [991] = 991, + [991] = 979, [992] = 992, [993] = 993, [994] = 994, @@ -4404,12 +4404,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1008, + [1009] = 990, [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 1014, + [1014] = 970, [1015] = 1015, [1016] = 1016, [1017] = 1017, @@ -4428,15 +4428,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1030] = 1030, [1031] = 1031, [1032] = 1032, - [1033] = 968, + [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 1037, + [1037] = 1013, [1038] = 1038, [1039] = 1039, [1040] = 1040, - [1041] = 1041, + [1041] = 1030, [1042] = 1042, [1043] = 1043, [1044] = 1044, @@ -4451,19 +4451,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1053] = 1053, [1054] = 1054, [1055] = 1055, - [1056] = 1015, + [1056] = 1056, [1057] = 1057, - [1058] = 1031, - [1059] = 1008, + [1058] = 1058, + [1059] = 1059, [1060] = 1060, - [1061] = 1031, + [1061] = 1061, [1062] = 1062, [1063] = 1063, [1064] = 1064, [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, + [1066] = 1048, + [1067] = 1030, + [1068] = 1048, [1069] = 1069, [1070] = 1070, [1071] = 1071, @@ -4488,29 +4488,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1090] = 1090, [1091] = 1091, [1092] = 1092, - [1093] = 1093, + [1093] = 1022, [1094] = 1094, [1095] = 1095, [1096] = 1096, [1097] = 1097, - [1098] = 1088, - [1099] = 1095, + [1098] = 1098, + [1099] = 1099, [1100] = 1100, [1101] = 1101, - [1102] = 1030, - [1103] = 1094, + [1102] = 1102, + [1103] = 1103, [1104] = 1104, [1105] = 1105, [1106] = 1106, - [1107] = 1107, - [1108] = 1108, + [1107] = 1092, + [1108] = 1095, [1109] = 1109, [1110] = 1110, [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 1101, - [1115] = 1094, + [1114] = 1114, + [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, @@ -4518,66 +4518,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1120] = 1120, [1121] = 1121, [1122] = 1122, - [1123] = 1123, + [1123] = 1092, [1124] = 1124, [1125] = 1125, [1126] = 1126, [1127] = 1127, - [1128] = 1063, + [1128] = 1128, [1129] = 1129, - [1130] = 1130, - [1131] = 1131, + [1130] = 1089, + [1131] = 1095, [1132] = 1132, [1133] = 1133, [1134] = 1134, [1135] = 1135, - [1136] = 1105, + [1136] = 1085, [1137] = 1137, - [1138] = 1101, + [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1141, - [1142] = 1076, - [1143] = 1084, - [1144] = 1144, + [1141] = 1077, + [1142] = 1142, + [1143] = 1137, + [1144] = 1114, [1145] = 1145, - [1146] = 1110, - [1147] = 1083, - [1148] = 1086, - [1149] = 1113, - [1150] = 1150, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1133, [1151] = 1151, - [1152] = 1105, + [1152] = 1081, [1153] = 1153, - [1154] = 1154, - [1155] = 1140, - [1156] = 1076, - [1157] = 1084, + [1154] = 1085, + [1155] = 1155, + [1156] = 1138, + [1157] = 1139, [1158] = 1158, - [1159] = 1110, - [1160] = 1083, - [1161] = 1086, - [1162] = 1113, - [1163] = 1163, + [1159] = 1077, + [1160] = 1142, + [1161] = 1137, + [1162] = 1114, + [1163] = 1138, [1164] = 1164, [1165] = 1165, [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 1063, + [1169] = 1169, [1170] = 1170, - [1171] = 1171, - [1172] = 1131, - [1173] = 1173, - [1174] = 1174, - [1175] = 1140, + [1171] = 1133, + [1172] = 1172, + [1173] = 1139, + [1174] = 1109, + [1175] = 1175, [1176] = 1176, - [1177] = 1177, + [1177] = 1109, [1178] = 1178, [1179] = 1179, [1180] = 1180, - [1181] = 1181, - [1182] = 1182, + [1181] = 1125, + [1182] = 1142, [1183] = 1183, [1184] = 1184, [1185] = 1185, @@ -4627,11 +4627,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1229] = 1229, [1230] = 1230, [1231] = 1231, - [1232] = 1216, + [1232] = 1232, [1233] = 1233, [1234] = 1234, - [1235] = 1235, - [1236] = 1236, + [1235] = 1183, + [1236] = 1197, [1237] = 1237, [1238] = 1238, [1239] = 1239, @@ -4655,18 +4655,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1231, - [1261] = 1216, - [1262] = 389, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, [1263] = 1263, [1264] = 1264, - [1265] = 1231, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, + [1265] = 1265, + [1266] = 1183, + [1267] = 1197, + [1268] = 391, [1269] = 1269, [1270] = 1270, - [1271] = 1228, + [1271] = 1271, [1272] = 1272, [1273] = 1273, [1274] = 1274, @@ -4679,7 +4679,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1281] = 1281, [1282] = 1282, [1283] = 1283, - [1284] = 1284, + [1284] = 1217, [1285] = 1285, [1286] = 1286, [1287] = 1287, @@ -4710,13 +4710,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1312] = 1312, [1313] = 1313, [1314] = 1314, - [1315] = 1300, + [1315] = 1315, [1316] = 1316, [1317] = 1317, [1318] = 1318, [1319] = 1319, [1320] = 1320, - [1321] = 1317, + [1321] = 1320, [1322] = 1322, [1323] = 1323, [1324] = 1324, @@ -4728,51 +4728,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1330] = 1330, [1331] = 1331, [1332] = 1332, - [1333] = 1304, + [1333] = 1333, [1334] = 1334, [1335] = 1335, - [1336] = 1325, - [1337] = 1337, - [1338] = 1304, - [1339] = 1339, + [1336] = 1336, + [1337] = 1313, + [1338] = 1338, + [1339] = 1333, [1340] = 1340, [1341] = 1341, [1342] = 1342, - [1343] = 1300, + [1343] = 1323, [1344] = 1344, [1345] = 1345, [1346] = 1346, [1347] = 1347, - [1348] = 1327, - [1349] = 1349, + [1348] = 1322, + [1349] = 1333, [1350] = 1350, [1351] = 1351, [1352] = 1352, [1353] = 1353, - [1354] = 1307, + [1354] = 1354, [1355] = 1355, [1356] = 1356, [1357] = 1357, [1358] = 1358, [1359] = 1359, - [1360] = 1314, + [1360] = 1360, [1361] = 1361, - [1362] = 1298, - [1363] = 1353, + [1362] = 1362, + [1363] = 1363, [1364] = 1364, [1365] = 1365, [1366] = 1366, - [1367] = 1367, + [1367] = 1354, [1368] = 1368, - [1369] = 1298, + [1369] = 1368, [1370] = 1370, [1371] = 1371, [1372] = 1372, [1373] = 1373, [1374] = 1374, [1375] = 1375, - [1376] = 1376, + [1376] = 1342, [1377] = 1377, + [1378] = 1378, + [1379] = 1342, + [1380] = 1380, + [1381] = 1381, + [1382] = 1322, + [1383] = 1383, + [1384] = 1363, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -4968,235 +4975,235 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(69); + if (eof) ADVANCE(65); ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 171, - '&', 131, + '!', 170, + '"', 90, + '%', 159, + '&', 119, '\'', 23, - '(', 127, - ')', 128, - '*', 162, - '+', 158, - ',', 179, - '-', 159, - '.', 190, - '/', 164, - '0', 71, - ':', 181, - ';', 194, - '<', 149, - '=', 133, - '>', 146, - '?', 180, - '@', 196, - '[', 186, - '\\', 44, - ']', 187, - '^', 169, - 'n', 202, - '{', 193, - '|', 166, - '}', 119, - '~', 183, + '(', 115, + ')', 116, + '*', 150, + '+', 146, + ',', 167, + '-', 147, + '.', 178, + '/', 152, + '0', 67, + ':', 169, + ';', 182, + '<', 137, + '=', 121, + '>', 134, + '?', 168, + '@', 184, + '[', 174, + '\\', 42, + ']', 175, + '^', 157, + 'n', 190, + '{', 181, + '|', 154, + '}', 107, + '~', 171, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + lookahead == ' ') SKIP(63); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); case 1: ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 171, - '&', 131, + '!', 170, + '"', 90, + '%', 159, + '&', 119, '\'', 23, - '(', 127, - ')', 128, - '*', 162, - '+', 158, - ',', 179, - '-', 159, - '.', 190, - '/', 164, - '0', 71, - ':', 181, - ';', 194, - '<', 149, - '=', 133, - '>', 146, - '?', 180, - '@', 195, - '[', 186, - ']', 187, - '^', 169, - '{', 193, - '|', 166, - '}', 119, - '~', 183, + '(', 115, + ')', 116, + '*', 150, + '+', 146, + ',', 167, + '-', 147, + '.', 178, + '/', 152, + '0', 67, + ':', 169, + ';', 182, + '<', 137, + '=', 121, + '>', 134, + '?', 168, + '@', 183, + '[', 174, + ']', 175, + '^', 157, + '{', 181, + '|', 154, + '}', 107, + '~', 171, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); case 2: ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 171, - '&', 131, + '!', 170, + '"', 90, + '%', 159, + '&', 119, '\'', 23, - '(', 127, - ')', 128, - '*', 162, - '+', 158, - ',', 179, - '-', 159, - '.', 191, - '/', 164, - '0', 71, + '(', 115, + ')', 116, + '*', 150, + '+', 146, + ',', 167, + '-', 147, + '.', 179, + '/', 152, + '0', 67, ':', 20, - ';', 194, - '<', 149, - '=', 133, - '>', 146, - '?', 180, - '@', 195, - '[', 186, - '^', 169, - 'n', 202, - '|', 166, - '}', 119, - '~', 183, + ';', 182, + '<', 137, + '=', 121, + '>', 134, + '?', 168, + '@', 183, + '[', 174, + '^', 157, + 'n', 190, + '|', 154, + '}', 107, + '~', 171, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); case 3: ADVANCE_MAP( '!', 21, - '%', 170, - '&', 130, - '(', 127, - ')', 128, - '*', 161, - '+', 157, - ',', 179, - '-', 160, - '.', 188, - '/', 163, - ':', 181, - ';', 194, - '<', 150, - '=', 133, - '>', 147, - '?', 180, - '@', 195, - '[', 186, - ']', 187, - '^', 168, - 'n', 202, - '|', 167, - '}', 119, + '%', 158, + '&', 118, + '(', 115, + ')', 116, + '*', 149, + '+', 145, + ',', 167, + '-', 148, + '.', 176, + '/', 151, + ':', 169, + ';', 182, + '<', 138, + '=', 121, + '>', 135, + '?', 168, + '@', 183, + '[', 174, + ']', 175, + '^', 156, + 'n', 190, + '|', 155, + '}', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); case 4: ADVANCE_MAP( '!', 21, - '%', 170, - '&', 130, - '(', 127, - ')', 128, - '*', 161, - '+', 157, - ',', 179, - '-', 160, - '.', 188, - '/', 163, - ':', 181, - ';', 194, - '<', 150, + '%', 158, + '&', 118, + '(', 115, + ')', 116, + '*', 149, + '+', 145, + ',', 167, + '-', 148, + '.', 176, + '/', 151, + ':', 169, + ';', 182, + '<', 138, '=', 22, - '>', 147, - '?', 180, - '@', 195, - '[', 186, - ']', 187, - '^', 168, - '{', 193, - '|', 167, - '}', 119, + '>', 135, + '?', 168, + '@', 183, + '[', 174, + ']', 175, + '^', 156, + '{', 181, + '|', 155, + '}', 107, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(103); + if (lookahead == '"') ADVANCE(91); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(116); - if (lookahead == '/') ADVANCE(111); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '"') ADVANCE(104); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '\\') ADVANCE(42); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(114); - if (lookahead != 0) ADVANCE(115); + lookahead == ' ') ADVANCE(102); + if (lookahead != 0) ADVANCE(103); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(117); + if (lookahead == '"') ADVANCE(105); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(101); - if (lookahead == '/') ADVANCE(105); - if (lookahead == '\\') ADVANCE(45); + if (lookahead == '"') ADVANCE(89); + if (lookahead == '/') ADVANCE(93); + if (lookahead == '\\') ADVANCE(43); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(108); - if (lookahead != 0) ADVANCE(109); + lookahead == ' ') ADVANCE(96); + if (lookahead != 0) ADVANCE(97); END_STATE(); case 9: ADVANCE_MAP( - '&', 129, - '(', 127, - ')', 128, - ',', 179, - '.', 189, + '&', 117, + '(', 115, + ')', 116, + ',', 167, + '.', 177, '/', 11, - ':', 181, - ';', 194, - '<', 148, - '=', 132, - '>', 145, - '?', 180, - '@', 195, - '[', 186, - '{', 193, - '|', 165, + ':', 169, + ';', 182, + '<', 136, + '=', 120, + '>', 133, + '?', 168, + '@', 183, + '[', 174, + '{', 181, + '|', 153, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); case 10: - if (lookahead == '\'') ADVANCE(100); - if (lookahead == '\\') ADVANCE(66); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '\\') ADVANCE(62); if (lookahead != 0 && lookahead != '\n') ADVANCE(10); END_STATE(); case 11: if (lookahead == '*') ADVANCE(13); - if (lookahead == '/') ADVANCE(204); + if (lookahead == '/') ADVANCE(192); END_STATE(); case 12: if (lookahead == '*') ADVANCE(12); - if (lookahead == '/') ADVANCE(205); + if (lookahead == '/') ADVANCE(193); if (lookahead != 0) ADVANCE(13); END_STATE(); case 13: @@ -5204,1107 +5211,923 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: - if (lookahead == '.') ADVANCE(89); - if (lookahead == '_') ADVANCE(54); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '_') ADVANCE(52); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(14); END_STATE(); case 15: - if (lookahead == '.') ADVANCE(199); + if (lookahead == '.') ADVANCE(187); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(62); + if (lookahead == '.') ADVANCE(58); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); END_STATE(); case 17: if (lookahead == '/') ADVANCE(11); - if (lookahead == '<') ADVANCE(148); - if (lookahead == '@') ADVANCE(38); + if (lookahead == '<') ADVANCE(136); + if (lookahead == '@') ADVANCE(36); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); case 18: - if (lookahead == '0') ADVANCE(99); + if (lookahead == '0') ADVANCE(87); if (lookahead == '+' || lookahead == '-') ADVANCE(19); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(97); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(85); END_STATE(); case 19: - if (lookahead == '0') ADVANCE(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(97); + if (lookahead == '0') ADVANCE(87); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(85); END_STATE(); case 20: - if (lookahead == ':') ADVANCE(192); + if (lookahead == ':') ADVANCE(180); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(154); + if (lookahead == '=') ADVANCE(142); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(153); + if (lookahead == '=') ADVANCE(141); END_STATE(); case 23: - if (lookahead == '\\') ADVANCE(66); + if (lookahead == '\\') ADVANCE(62); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'') ADVANCE(10); END_STATE(); case 24: if (lookahead == '_') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); END_STATE(); case 25: if (lookahead == '_') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(68); END_STATE(); case 26: - if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + if (lookahead == '_') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(84); END_STATE(); case 27: - if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + if (lookahead == 'a') ADVANCE(37); END_STATE(); case 28: - if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + if (lookahead == 'a') ADVANCE(29); END_STATE(); case 29: - if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'c') ADVANCE(34); END_STATE(); case 30: - if (lookahead == 'a') ADVANCE(31); + if (lookahead == 'd') ADVANCE(185); END_STATE(); case 31: - if (lookahead == 'c') ADVANCE(36); + if (lookahead == 'e') ADVANCE(39); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(197); + if (lookahead == 'e') ADVANCE(27); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'e') ADVANCE(30); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'e') ADVANCE(186); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(32); + if (lookahead == 'f') ADVANCE(28); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'i') ADVANCE(38); END_STATE(); case 37: - if (lookahead == 'f') ADVANCE(30); + if (lookahead == 'l') ADVANCE(33); END_STATE(); case 38: - if (lookahead == 'i') ADVANCE(40); + if (lookahead == 'n') ADVANCE(41); END_STATE(); case 39: - if (lookahead == 'l') ADVANCE(35); + if (lookahead == 'r') ADVANCE(35); END_STATE(); case 40: - if (lookahead == 'n') ADVANCE(43); + if (lookahead == 's') ADVANCE(32); END_STATE(); case 41: - if (lookahead == 'r') ADVANCE(37); + if (lookahead == 't') ADVANCE(31); END_STATE(); case 42: - if (lookahead == 's') ADVANCE(34); - END_STATE(); - case 43: - if (lookahead == 't') ADVANCE(33); - END_STATE(); - case 44: - if (lookahead == 'u') ADVANCE(121); - if (lookahead == 'x') ADVANCE(123); - if (lookahead == '{') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); + if (lookahead == 'u') ADVANCE(109); + if (lookahead == 'x') ADVANCE(111); + if (lookahead == '{') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(110); if (lookahead == '"' || lookahead == '\'' || lookahead == '\\' || lookahead == 'b' || lookahead == 'f' || lookahead == 'n' || - ('r' <= lookahead && lookahead <= 't')) ADVANCE(124); - if (lookahead != 0) ADVANCE(120); + ('r' <= lookahead && lookahead <= 't')) ADVANCE(112); + if (lookahead != 0) ADVANCE(108); END_STATE(); - case 45: - if (lookahead == 'u') ADVANCE(47); - if (lookahead == 'x') ADVANCE(64); - if (lookahead == '{') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(126); - if (lookahead != 0) ADVANCE(124); + case 43: + if (lookahead == 'u') ADVANCE(45); + if (lookahead == 'x') ADVANCE(60); + if (lookahead == '{') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(114); + if (lookahead != 0) ADVANCE(112); END_STATE(); - case 46: - if (lookahead == '{') ADVANCE(118); + case 44: + if (lookahead == '{') ADVANCE(106); END_STATE(); - case 47: - if (lookahead == '{') ADVANCE(63); + case 45: + if (lookahead == '{') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); END_STATE(); - case 48: - if (lookahead == '}') ADVANCE(124); + case 46: + if (lookahead == '}') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); - case 49: + case 47: if (lookahead == '+' || - lookahead == '-') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); + lookahead == '-') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); END_STATE(); - case 50: + case 48: if (lookahead == '0' || - lookahead == '1') ADVANCE(85); + lookahead == '1') ADVANCE(77); END_STATE(); - case 51: + case 49: if (lookahead == '8' || lookahead == '9') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(82); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(74); + END_STATE(); + case 50: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(75); + END_STATE(); + case 51: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(14); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); END_STATE(); case 54: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(14); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(68); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(84); END_STATE(); case 56: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); - END_STATE(); - case 57: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); - END_STATE(); - case 58: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); - END_STATE(); - case 59: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); - END_STATE(); - case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); END_STATE(); - case 61: + case 57: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); END_STATE(); - case 62: + case 58: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); - case 63: + case 59: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); - case 64: + case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); END_STATE(); - case 65: + case 61: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); - case 66: + case 62: if (lookahead != 0) ADVANCE(10); END_STATE(); - case 67: - if (eof) ADVANCE(69); + case 63: + if (eof) ADVANCE(65); ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 171, - '&', 131, + '!', 170, + '"', 90, + '%', 159, + '&', 119, '\'', 23, - '(', 127, - ')', 128, - '*', 162, - '+', 158, - ',', 179, - '-', 159, - '.', 190, - '/', 164, - '0', 71, - ':', 181, - ';', 194, - '<', 149, - '=', 133, - '>', 146, - '?', 180, - '@', 196, - '[', 186, - '\\', 46, - ']', 187, - '^', 169, - 'n', 202, - '{', 193, - '|', 166, - '}', 119, - '~', 183, + '(', 115, + ')', 116, + '*', 150, + '+', 146, + ',', 167, + '-', 147, + '.', 178, + '/', 152, + '0', 67, + ':', 169, + ';', 182, + '<', 137, + '=', 121, + '>', 134, + '?', 168, + '@', 184, + '[', 174, + '\\', 44, + ']', 175, + '^', 157, + 'n', 190, + '{', 181, + '|', 154, + '}', 107, + '~', 171, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + lookahead == ' ') SKIP(63); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); - case 68: - if (eof) ADVANCE(69); + case 64: + if (eof) ADVANCE(65); ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 170, - '&', 130, + '!', 170, + '"', 90, + '%', 158, + '&', 118, '\'', 23, - '(', 127, - ')', 128, - '*', 161, - '+', 157, - ',', 179, - '-', 160, - '.', 191, - '/', 163, - '0', 71, - ':', 181, - ';', 194, - '<', 150, + '(', 115, + ')', 116, + '*', 149, + '+', 145, + ',', 167, + '-', 148, + '.', 179, + '/', 151, + '0', 67, + ':', 169, + ';', 182, + '<', 138, '=', 22, - '>', 147, - '?', 180, - '@', 196, - '[', 186, - ']', 187, - '^', 168, - 'n', 202, - '{', 193, - '|', 167, - '}', 119, - '~', 183, + '>', 135, + '?', 168, + '@', 184, + '[', 174, + ']', 175, + '^', 156, + 'n', 190, + '{', 181, + '|', 155, + '}', 107, + '~', 171, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + lookahead == ' ') SKIP(64); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(191); END_STATE(); - case 69: + case 65: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 70: + case 66: ACCEPT_TOKEN(sym_decimal_integer_literal); END_STATE(); - case 71: + case 67: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 89, - '_', 54, - 'B', 50, - 'b', 50, - 'E', 49, - 'e', 49, - 'L', 70, - 'l', 70, - 'O', 52, - 'o', 52, - 'P', 49, - 'p', 49, + '.', 81, + '_', 52, + 'B', 48, + 'b', 48, + 'E', 47, + 'e', 47, + 'L', 66, + 'l', 66, + 'O', 50, + 'o', 50, 'X', 16, 'x', 16, '8', 14, '9', 14, - 'D', 86, - 'F', 86, - 'd', 86, - 'f', 86, + 'D', 78, + 'F', 78, + 'd', 78, + 'f', 78, ); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(82); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(74); END_STATE(); - case 72: + case 68: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 89, + '.', 81, '_', 25, - 'E', 49, - 'e', 49, - 'L', 70, - 'l', 70, - 'P', 49, - 'p', 49, - 'D', 86, - 'F', 86, - 'd', 86, - 'f', 86, + 'E', 47, + 'e', 47, + 'L', 66, + 'l', 66, + 'D', 78, + 'F', 78, + 'd', 78, + 'f', 78, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(68); END_STATE(); - case 73: + case 69: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 89, - '_', 56, - 'E', 49, - 'e', 49, - 'L', 70, - 'l', 70, - 'P', 49, - 'p', 49, - 'D', 86, - 'F', 86, - 'd', 86, - 'f', 86, + '.', 81, + '_', 54, + 'E', 47, + 'e', 47, + 'L', 66, + 'l', 66, + 'D', 78, + 'F', 78, + 'd', 78, + 'f', 78, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(68); END_STATE(); - case 74: + case 70: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( '_', 24, - 'E', 49, - 'e', 49, - 'L', 70, - 'l', 70, - 'P', 49, - 'p', 49, - 'D', 86, - 'F', 86, - 'd', 86, - 'f', 86, + 'E', 47, + 'e', 47, + 'L', 66, + 'l', 66, + 'D', 78, + 'F', 78, + 'd', 78, + 'f', 78, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); - END_STATE(); - case 75: - ACCEPT_TOKEN(sym_hex_integer_literal); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); END_STATE(); - case 76: - ACCEPT_TOKEN(sym_hex_integer_literal); - ADVANCE_MAP( - '.', 98, - '0', 79, - '_', 61, - '+', 19, - '-', 19, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(77); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); - END_STATE(); - case 77: - ACCEPT_TOKEN(sym_hex_integer_literal); - ADVANCE_MAP( - '.', 98, - '_', 57, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, - 'D', 80, - 'F', 80, - 'd', 80, - 'f', 80, - ); - if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); - END_STATE(); - case 78: - ACCEPT_TOKEN(sym_hex_integer_literal); - ADVANCE_MAP( - '.', 98, - '_', 26, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, - 'D', 80, - 'F', 80, - 'd', 80, - 'f', 80, - ); - if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); - END_STATE(); - case 79: + case 71: ACCEPT_TOKEN(sym_hex_integer_literal); - ADVANCE_MAP( - '.', 98, - '_', 61, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, - 'D', 80, - 'F', 80, - 'd', 80, - 'f', 80, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(80); END_STATE(); - case 80: + case 72: ACCEPT_TOKEN(sym_hex_integer_literal); - ADVANCE_MAP( - '.', 98, - '_', 61, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, - ); + if (lookahead == '.') ADVANCE(86); + if (lookahead == '_') ADVANCE(57); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(71); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(18); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); END_STATE(); - case 81: + case 73: ACCEPT_TOKEN(sym_octal_integer_literal); END_STATE(); - case 82: + case 74: ACCEPT_TOKEN(sym_octal_integer_literal); - if (lookahead == '.') ADVANCE(89); - if (lookahead == '_') ADVANCE(51); + if (lookahead == '.') ADVANCE(81); + if (lookahead == '_') ADVANCE(49); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(81); + lookahead == 'l') ADVANCE(73); if (lookahead == '8' || lookahead == '9') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(82); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(74); END_STATE(); - case 83: + case 75: ACCEPT_TOKEN(sym_octal_integer_literal); - if (lookahead == '_') ADVANCE(52); + if (lookahead == '_') ADVANCE(50); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(83); + lookahead == 'l') ADVANCE(73); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(75); END_STATE(); - case 84: + case 76: ACCEPT_TOKEN(sym_binary_integer_literal); END_STATE(); - case 85: + case 77: ACCEPT_TOKEN(sym_binary_integer_literal); - if (lookahead == '_') ADVANCE(50); + if (lookahead == '_') ADVANCE(48); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(84); + lookahead == 'l') ADVANCE(76); if (lookahead == '0' || - lookahead == '1') ADVANCE(85); + lookahead == '1') ADVANCE(77); END_STATE(); - case 86: + case 78: ACCEPT_TOKEN(sym_decimal_floating_point_literal); END_STATE(); - case 87: + case 79: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(53); + if (lookahead == '_') ADVANCE(51); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); + lookahead == 'e') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); - case 88: + case 80: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(53); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); + lookahead == 'f') ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); END_STATE(); - case 89: + case 81: ACCEPT_TOKEN(sym_decimal_floating_point_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); + lookahead == 'e') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); - END_STATE(); - case 90: - ACCEPT_TOKEN(sym_hex_floating_point_literal); - END_STATE(); - case 91: - ACCEPT_TOKEN(sym_hex_floating_point_literal); - ADVANCE_MAP( - '0', 92, - '_', 62, - '+', 19, - '-', 19, - 'E', 91, - 'e', 91, - 'P', 18, - 'p', 18, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(94); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(78); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); - case 92: + case 82: ACCEPT_TOKEN(sym_hex_floating_point_literal); - ADVANCE_MAP( - '_', 62, - 'E', 91, - 'e', 91, - 'P', 18, - 'p', 18, - 'D', 93, - 'F', 93, - 'd', 93, - 'f', 93, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(93); END_STATE(); - case 93: + case 83: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(62); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(91); + if (lookahead == '_') ADVANCE(58); if (lookahead == 'P' || lookahead == 'p') ADVANCE(18); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); - case 94: - ACCEPT_TOKEN(sym_hex_floating_point_literal); - ADVANCE_MAP( - '_', 59, - 'E', 91, - 'e', 91, - 'P', 18, - 'p', 18, - 'D', 93, - 'F', 93, - 'd', 93, - 'f', 93, - ); - if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); - END_STATE(); - case 95: - ACCEPT_TOKEN(sym_hex_floating_point_literal); - ADVANCE_MAP( - '_', 28, - 'E', 91, - 'e', 91, - 'P', 18, - 'p', 18, - 'D', 93, - 'F', 93, - 'd', 93, - 'f', 93, - ); - if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); - END_STATE(); - case 96: + case 84: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(27); + if (lookahead == '_') ADVANCE(26); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + lookahead == 'f') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(84); END_STATE(); - case 97: + case 85: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(58); + if (lookahead == '_') ADVANCE(55); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + lookahead == 'f') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(84); END_STATE(); - case 98: + case 86: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(91); if (lookahead == 'P' || lookahead == 'p') ADVANCE(18); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); - case 99: + case 87: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(90); + lookahead == 'f') ADVANCE(82); END_STATE(); - case 100: + case 88: ACCEPT_TOKEN(sym_character_literal); END_STATE(); - case 101: + case 89: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 102: + case 90: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead == '"') ADVANCE(5); END_STATE(); - case 103: + case 91: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 104: + case 92: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '\n') ADVANCE(109); + if (lookahead == '\n') ADVANCE(97); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(104); + lookahead != '\\') ADVANCE(92); END_STATE(); - case 105: + case 93: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '*') ADVANCE(107); - if (lookahead == '/') ADVANCE(104); + if (lookahead == '*') ADVANCE(95); + if (lookahead == '/') ADVANCE(92); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(109); + lookahead != '\\') ADVANCE(97); END_STATE(); - case 106: + case 94: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '*') ADVANCE(106); - if (lookahead == '/') ADVANCE(109); + if (lookahead == '*') ADVANCE(94); + if (lookahead == '/') ADVANCE(97); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(107); + lookahead != '\\') ADVANCE(95); END_STATE(); - case 107: + case 95: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '*') ADVANCE(106); + if (lookahead == '*') ADVANCE(94); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(107); + lookahead != '\\') ADVANCE(95); END_STATE(); - case 108: + case 96: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '/') ADVANCE(105); + if (lookahead == '/') ADVANCE(93); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(108); + lookahead == ' ') ADVANCE(96); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(109); + lookahead != '\\') ADVANCE(97); END_STATE(); - case 109: + case 97: ACCEPT_TOKEN(sym_string_fragment); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(109); + lookahead != '\\') ADVANCE(97); END_STATE(); - case 110: + case 98: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '\n') ADVANCE(115); + if (lookahead == '\n') ADVANCE(103); if (lookahead == '"' || - lookahead == '\\') ADVANCE(204); - if (lookahead != 0) ADVANCE(110); + lookahead == '\\') ADVANCE(192); + if (lookahead != 0) ADVANCE(98); END_STATE(); - case 111: + case 99: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '*') ADVANCE(113); - if (lookahead == '/') ADVANCE(110); + if (lookahead == '*') ADVANCE(101); + if (lookahead == '/') ADVANCE(98); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(115); + lookahead != '\\') ADVANCE(103); END_STATE(); - case 112: + case 100: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == '/') ADVANCE(115); + if (lookahead == '*') ADVANCE(100); + if (lookahead == '/') ADVANCE(103); if (lookahead == '"' || lookahead == '\\') ADVANCE(13); - if (lookahead != 0) ADVANCE(113); + if (lookahead != 0) ADVANCE(101); END_STATE(); - case 113: + case 101: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '*') ADVANCE(112); + if (lookahead == '*') ADVANCE(100); if (lookahead == '"' || lookahead == '\\') ADVANCE(13); - if (lookahead != 0) ADVANCE(113); + if (lookahead != 0) ADVANCE(101); END_STATE(); - case 114: + case 102: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '/') ADVANCE(111); + if (lookahead == '/') ADVANCE(99); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(114); + lookahead == ' ') ADVANCE(102); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(115); + lookahead != '\\') ADVANCE(103); END_STATE(); - case 115: + case 103: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(115); + lookahead != '\\') ADVANCE(103); END_STATE(); - case 116: + case 104: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token2); if (lookahead == '"') ADVANCE(5); if (lookahead == '\\') ADVANCE(7); - if (lookahead != 0) ADVANCE(117); + if (lookahead != 0) ADVANCE(105); END_STATE(); - case 117: + case 105: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token2); if (lookahead == '\\') ADVANCE(7); if (lookahead != 0 && - lookahead != '"') ADVANCE(117); + lookahead != '"') ADVANCE(105); END_STATE(); - case 118: + case 106: ACCEPT_TOKEN(anon_sym_BSLASH_LBRACE); END_STATE(); - case 119: + case 107: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 120: + case 108: ACCEPT_TOKEN(aux_sym__escape_sequence_token1); END_STATE(); - case 121: + case 109: ACCEPT_TOKEN(aux_sym__escape_sequence_token1); - if (lookahead == '{') ADVANCE(63); + if (lookahead == '{') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); END_STATE(); - case 122: + case 110: ACCEPT_TOKEN(aux_sym__escape_sequence_token1); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(113); END_STATE(); - case 123: + case 111: ACCEPT_TOKEN(aux_sym__escape_sequence_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); END_STATE(); - case 124: + case 112: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 125: + case 113: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(124); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); END_STATE(); - case 126: + case 114: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(113); END_STATE(); - case 127: + case 115: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 128: + case 116: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 129: + case 117: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 130: + case 118: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(155); + if (lookahead == '&') ADVANCE(143); END_STATE(); - case 131: + case 119: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(155); - if (lookahead == '=') ADVANCE(138); + if (lookahead == '&') ADVANCE(143); + if (lookahead == '=') ADVANCE(126); END_STATE(); - case 132: + case 120: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 133: + case 121: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(153); + if (lookahead == '=') ADVANCE(141); END_STATE(); - case 134: + case 122: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 135: + case 123: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 136: + case 124: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 137: + case 125: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 138: + case 126: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 139: + case 127: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 140: + case 128: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 141: + case 129: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 142: + case 130: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 143: + case 131: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 144: + case 132: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 145: + case 133: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 146: + case 134: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(151); - if (lookahead == '>') ADVANCE(174); + if (lookahead == '=') ADVANCE(139); + if (lookahead == '>') ADVANCE(162); END_STATE(); - case 147: + case 135: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(151); - if (lookahead == '>') ADVANCE(175); + if (lookahead == '=') ADVANCE(139); + if (lookahead == '>') ADVANCE(163); END_STATE(); - case 148: + case 136: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 149: + case 137: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(173); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '<') ADVANCE(161); + if (lookahead == '=') ADVANCE(140); END_STATE(); - case 150: + case 138: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '<') ADVANCE(160); + if (lookahead == '=') ADVANCE(140); END_STATE(); - case 151: + case 139: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 152: + case 140: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 153: + case 141: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 154: + case 142: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 155: + case 143: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 156: + case 144: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 157: + case 145: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(184); + if (lookahead == '+') ADVANCE(172); END_STATE(); - case 158: + case 146: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(184); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '+') ADVANCE(172); + if (lookahead == '=') ADVANCE(122); END_STATE(); - case 159: + case 147: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(185); - if (lookahead == '=') ADVANCE(135); - if (lookahead == '>') ADVANCE(178); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '=') ADVANCE(123); + if (lookahead == '>') ADVANCE(166); END_STATE(); - case 160: + case 148: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(185); - if (lookahead == '>') ADVANCE(178); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '>') ADVANCE(166); END_STATE(); - case 161: + case 149: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 162: + case 150: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(136); + if (lookahead == '=') ADVANCE(124); END_STATE(); - case 163: + case 151: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(13); - if (lookahead == '/') ADVANCE(204); + if (lookahead == '/') ADVANCE(192); END_STATE(); - case 164: + case 152: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(13); - if (lookahead == '/') ADVANCE(204); - if (lookahead == '=') ADVANCE(137); + if (lookahead == '/') ADVANCE(192); + if (lookahead == '=') ADVANCE(125); END_STATE(); - case 165: + case 153: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 166: + case 154: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(139); - if (lookahead == '|') ADVANCE(156); + if (lookahead == '=') ADVANCE(127); + if (lookahead == '|') ADVANCE(144); END_STATE(); - case 167: + case 155: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(156); + if (lookahead == '|') ADVANCE(144); END_STATE(); - case 168: + case 156: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 169: + case 157: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(140); + if (lookahead == '=') ADVANCE(128); END_STATE(); - case 170: + case 158: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 171: + case 159: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') ADVANCE(129); END_STATE(); - case 172: + case 160: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 173: + case 161: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(142); + if (lookahead == '=') ADVANCE(130); END_STATE(); - case 174: + case 162: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(177); + if (lookahead == '=') ADVANCE(131); + if (lookahead == '>') ADVANCE(165); END_STATE(); - case 175: + case 163: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(176); + if (lookahead == '>') ADVANCE(164); END_STATE(); - case 176: + case 164: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 177: + case 165: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '=') ADVANCE(132); END_STATE(); - case 178: + case 166: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 179: + case 167: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 180: + case 168: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 181: + case 169: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(192); + if (lookahead == ':') ADVANCE(180); END_STATE(); - case 182: + case 170: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(154); + if (lookahead == '=') ADVANCE(142); END_STATE(); - case 183: + case 171: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 184: + case 172: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 185: + case 173: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 186: + case 174: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 187: + case 175: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 188: + case 176: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 189: + case 177: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(15); END_STATE(); - case 190: + case 178: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); - case 191: + case 179: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); END_STATE(); - case 192: + case 180: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 193: + case 181: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 194: + case 182: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 195: + case 183: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 196: + case 184: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'i') ADVANCE(40); + if (lookahead == 'i') ADVANCE(38); END_STATE(); - case 197: + case 185: ACCEPT_TOKEN(anon_sym_non_DASHsealed); END_STATE(); - case 198: + case 186: ACCEPT_TOKEN(anon_sym_ATinterface); END_STATE(); - case 199: + case 187: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 200: + case 188: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(42); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(203); + if (lookahead == '-') ADVANCE(40); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(191); END_STATE(); - case 201: + case 189: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(200); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(203); + if (lookahead == 'n') ADVANCE(188); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(191); END_STATE(); - case 202: + case 190: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(201); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(203); + if (lookahead == 'o') ADVANCE(189); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(191); END_STATE(); - case 203: + case 191: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(191); END_STATE(); - case 204: + case 192: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(204); + lookahead != '\n') ADVANCE(192); END_STATE(); - case 205: + case 193: ACCEPT_TOKEN(sym_block_comment); END_STATE(); default: @@ -7396,22 +7219,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [104] = {.lex_state = 0}, [105] = {.lex_state = 0}, [106] = {.lex_state = 1}, - [107] = {.lex_state = 68}, - [108] = {.lex_state = 68}, - [109] = {.lex_state = 68}, - [110] = {.lex_state = 68}, - [111] = {.lex_state = 68}, - [112] = {.lex_state = 68}, - [113] = {.lex_state = 68}, - [114] = {.lex_state = 68}, + [107] = {.lex_state = 64}, + [108] = {.lex_state = 64}, + [109] = {.lex_state = 64}, + [110] = {.lex_state = 64}, + [111] = {.lex_state = 64}, + [112] = {.lex_state = 64}, + [113] = {.lex_state = 64}, + [114] = {.lex_state = 64}, [115] = {.lex_state = 2}, [116] = {.lex_state = 2}, [117] = {.lex_state = 2}, [118] = {.lex_state = 2}, [119] = {.lex_state = 2}, [120] = {.lex_state = 2}, - [121] = {.lex_state = 68}, - [122] = {.lex_state = 68}, + [121] = {.lex_state = 64}, + [122] = {.lex_state = 64}, [123] = {.lex_state = 1}, [124] = {.lex_state = 1}, [125] = {.lex_state = 1}, @@ -7422,10 +7245,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [130] = {.lex_state = 1}, [131] = {.lex_state = 1}, [132] = {.lex_state = 1}, - [133] = {.lex_state = 1}, - [134] = {.lex_state = 1}, + [133] = {.lex_state = 0}, + [134] = {.lex_state = 0}, [135] = {.lex_state = 1}, - [136] = {.lex_state = 0}, + [136] = {.lex_state = 1}, [137] = {.lex_state = 1}, [138] = {.lex_state = 1}, [139] = {.lex_state = 1}, @@ -7448,12 +7271,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [156] = {.lex_state = 1}, [157] = {.lex_state = 1}, [158] = {.lex_state = 0}, - [159] = {.lex_state = 0}, - [160] = {.lex_state = 1}, + [159] = {.lex_state = 1}, + [160] = {.lex_state = 0}, [161] = {.lex_state = 1}, [162] = {.lex_state = 1}, - [163] = {.lex_state = 0}, - [164] = {.lex_state = 1}, + [163] = {.lex_state = 1}, + [164] = {.lex_state = 0}, [165] = {.lex_state = 1}, [166] = {.lex_state = 1}, [167] = {.lex_state = 1}, @@ -7486,7 +7309,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 1}, [195] = {.lex_state = 1}, [196] = {.lex_state = 1}, - [197] = {.lex_state = 1}, + [197] = {.lex_state = 0}, [198] = {.lex_state = 1}, [199] = {.lex_state = 1}, [200] = {.lex_state = 1}, @@ -7503,7 +7326,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [211] = {.lex_state = 1}, [212] = {.lex_state = 1}, [213] = {.lex_state = 1}, - [214] = {.lex_state = 0}, + [214] = {.lex_state = 1}, [215] = {.lex_state = 1}, [216] = {.lex_state = 1}, [217] = {.lex_state = 1}, @@ -7537,14 +7360,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [245] = {.lex_state = 1}, [246] = {.lex_state = 1}, [247] = {.lex_state = 1}, - [248] = {.lex_state = 2}, - [249] = {.lex_state = 0}, + [248] = {.lex_state = 1}, + [249] = {.lex_state = 2}, [250] = {.lex_state = 0}, - [251] = {.lex_state = 2}, - [252] = {.lex_state = 0}, - [253] = {.lex_state = 2}, + [251] = {.lex_state = 0}, + [252] = {.lex_state = 2}, + [253] = {.lex_state = 0}, [254] = {.lex_state = 2}, - [255] = {.lex_state = 0}, + [255] = {.lex_state = 2}, [256] = {.lex_state = 0}, [257] = {.lex_state = 0}, [258] = {.lex_state = 0}, @@ -7691,51 +7514,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [399] = {.lex_state = 0}, [400] = {.lex_state = 0}, [401] = {.lex_state = 0}, - [402] = {.lex_state = 2}, - [403] = {.lex_state = 1}, + [402] = {.lex_state = 0}, + [403] = {.lex_state = 2}, [404] = {.lex_state = 1}, - [405] = {.lex_state = 3}, - [406] = {.lex_state = 0}, - [407] = {.lex_state = 0}, + [405] = {.lex_state = 1}, + [406] = {.lex_state = 3}, + [407] = {.lex_state = 3}, [408] = {.lex_state = 0}, [409] = {.lex_state = 0}, [410] = {.lex_state = 0}, - [411] = {.lex_state = 1}, - [412] = {.lex_state = 1}, + [411] = {.lex_state = 0}, + [412] = {.lex_state = 0}, [413] = {.lex_state = 1}, - [414] = {.lex_state = 0}, + [414] = {.lex_state = 1}, [415] = {.lex_state = 1}, [416] = {.lex_state = 0}, [417] = {.lex_state = 1}, [418] = {.lex_state = 0}, [419] = {.lex_state = 1}, - [420] = {.lex_state = 1}, + [420] = {.lex_state = 0}, [421] = {.lex_state = 1}, [422] = {.lex_state = 1}, [423] = {.lex_state = 1}, - [424] = {.lex_state = 0}, - [425] = {.lex_state = 0}, + [424] = {.lex_state = 1}, + [425] = {.lex_state = 1}, [426] = {.lex_state = 0}, - [427] = {.lex_state = 1}, - [428] = {.lex_state = 1}, + [427] = {.lex_state = 0}, + [428] = {.lex_state = 0}, [429] = {.lex_state = 1}, - [430] = {.lex_state = 4}, - [431] = {.lex_state = 4}, - [432] = {.lex_state = 1}, + [430] = {.lex_state = 1}, + [431] = {.lex_state = 1}, + [432] = {.lex_state = 4}, [433] = {.lex_state = 4}, [434] = {.lex_state = 1}, - [435] = {.lex_state = 4}, - [436] = {.lex_state = 1}, - [437] = {.lex_state = 1}, + [435] = {.lex_state = 1}, + [436] = {.lex_state = 4}, + [437] = {.lex_state = 4}, [438] = {.lex_state = 1}, [439] = {.lex_state = 1}, [440] = {.lex_state = 1}, [441] = {.lex_state = 1}, - [442] = {.lex_state = 4}, + [442] = {.lex_state = 1}, [443] = {.lex_state = 1}, [444] = {.lex_state = 1}, [445] = {.lex_state = 1}, - [446] = {.lex_state = 4}, + [446] = {.lex_state = 1}, [447] = {.lex_state = 4}, [448] = {.lex_state = 4}, [449] = {.lex_state = 4}, @@ -7744,7 +7567,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [452] = {.lex_state = 4}, [453] = {.lex_state = 4}, [454] = {.lex_state = 1}, - [455] = {.lex_state = 1}, + [455] = {.lex_state = 4}, [456] = {.lex_state = 4}, [457] = {.lex_state = 4}, [458] = {.lex_state = 4}, @@ -7752,31 +7575,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [460] = {.lex_state = 4}, [461] = {.lex_state = 4}, [462] = {.lex_state = 1}, - [463] = {.lex_state = 4}, - [464] = {.lex_state = 4}, - [465] = {.lex_state = 1}, + [463] = {.lex_state = 1}, + [464] = {.lex_state = 1}, + [465] = {.lex_state = 4}, [466] = {.lex_state = 4}, [467] = {.lex_state = 4}, - [468] = {.lex_state = 0}, + [468] = {.lex_state = 1}, [469] = {.lex_state = 4}, [470] = {.lex_state = 4}, [471] = {.lex_state = 2}, - [472] = {.lex_state = 1}, + [472] = {.lex_state = 4}, [473] = {.lex_state = 4}, - [474] = {.lex_state = 4}, - [475] = {.lex_state = 4}, + [474] = {.lex_state = 0}, + [475] = {.lex_state = 1}, [476] = {.lex_state = 4}, [477] = {.lex_state = 4}, - [478] = {.lex_state = 2}, + [478] = {.lex_state = 4}, [479] = {.lex_state = 4}, [480] = {.lex_state = 4}, [481] = {.lex_state = 2}, - [482] = {.lex_state = 2}, - [483] = {.lex_state = 4}, - [484] = {.lex_state = 0}, - [485] = {.lex_state = 4}, + [482] = {.lex_state = 4}, + [483] = {.lex_state = 2}, + [484] = {.lex_state = 4}, + [485] = {.lex_state = 2}, [486] = {.lex_state = 4}, - [487] = {.lex_state = 4}, + [487] = {.lex_state = 0}, [488] = {.lex_state = 4}, [489] = {.lex_state = 4}, [490] = {.lex_state = 4}, @@ -7791,58 +7614,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [499] = {.lex_state = 4}, [500] = {.lex_state = 4}, [501] = {.lex_state = 4}, - [502] = {.lex_state = 9}, - [503] = {.lex_state = 9}, + [502] = {.lex_state = 4}, + [503] = {.lex_state = 0}, [504] = {.lex_state = 4}, [505] = {.lex_state = 0}, [506] = {.lex_state = 4}, [507] = {.lex_state = 9}, [508] = {.lex_state = 4}, - [509] = {.lex_state = 0}, - [510] = {.lex_state = 0}, - [511] = {.lex_state = 4}, + [509] = {.lex_state = 9}, + [510] = {.lex_state = 4}, + [511] = {.lex_state = 9}, [512] = {.lex_state = 4}, [513] = {.lex_state = 4}, - [514] = {.lex_state = 4}, + [514] = {.lex_state = 0}, [515] = {.lex_state = 4}, [516] = {.lex_state = 4}, [517] = {.lex_state = 4}, [518] = {.lex_state = 4}, [519] = {.lex_state = 4}, [520] = {.lex_state = 4}, - [521] = {.lex_state = 4}, + [521] = {.lex_state = 0}, [522] = {.lex_state = 0}, [523] = {.lex_state = 0}, - [524] = {.lex_state = 0}, + [524] = {.lex_state = 4}, [525] = {.lex_state = 4}, [526] = {.lex_state = 4}, [527] = {.lex_state = 4}, [528] = {.lex_state = 4}, - [529] = {.lex_state = 4}, + [529] = {.lex_state = 0}, [530] = {.lex_state = 4}, [531] = {.lex_state = 4}, - [532] = {.lex_state = 4}, + [532] = {.lex_state = 0}, [533] = {.lex_state = 4}, [534] = {.lex_state = 4}, - [535] = {.lex_state = 0}, - [536] = {.lex_state = 0}, - [537] = {.lex_state = 0}, - [538] = {.lex_state = 0}, - [539] = {.lex_state = 0}, - [540] = {.lex_state = 0}, + [535] = {.lex_state = 4}, + [536] = {.lex_state = 4}, + [537] = {.lex_state = 4}, + [538] = {.lex_state = 4}, + [539] = {.lex_state = 4}, + [540] = {.lex_state = 4}, [541] = {.lex_state = 4}, - [542] = {.lex_state = 4}, - [543] = {.lex_state = 4}, - [544] = {.lex_state = 4}, + [542] = {.lex_state = 0}, + [543] = {.lex_state = 0}, + [544] = {.lex_state = 0}, [545] = {.lex_state = 4}, - [546] = {.lex_state = 0}, - [547] = {.lex_state = 0}, - [548] = {.lex_state = 0}, - [549] = {.lex_state = 0}, + [546] = {.lex_state = 4}, + [547] = {.lex_state = 4}, + [548] = {.lex_state = 4}, + [549] = {.lex_state = 4}, [550] = {.lex_state = 4}, - [551] = {.lex_state = 4}, - [552] = {.lex_state = 0}, - [553] = {.lex_state = 4}, + [551] = {.lex_state = 0}, + [552] = {.lex_state = 4}, + [553] = {.lex_state = 0}, [554] = {.lex_state = 4}, [555] = {.lex_state = 4}, [556] = {.lex_state = 4}, @@ -7853,7 +7676,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [561] = {.lex_state = 4}, [562] = {.lex_state = 4}, [563] = {.lex_state = 4}, - [564] = {.lex_state = 4}, + [564] = {.lex_state = 0}, [565] = {.lex_state = 4}, [566] = {.lex_state = 4}, [567] = {.lex_state = 4}, @@ -7861,35 +7684,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [569] = {.lex_state = 4}, [570] = {.lex_state = 4}, [571] = {.lex_state = 0}, - [572] = {.lex_state = 4}, - [573] = {.lex_state = 4}, + [572] = {.lex_state = 0}, + [573] = {.lex_state = 0}, [574] = {.lex_state = 0}, - [575] = {.lex_state = 4}, - [576] = {.lex_state = 0}, - [577] = {.lex_state = 0}, - [578] = {.lex_state = 0}, + [575] = {.lex_state = 0}, + [576] = {.lex_state = 4}, + [577] = {.lex_state = 4}, + [578] = {.lex_state = 4}, [579] = {.lex_state = 0}, - [580] = {.lex_state = 9}, - [581] = {.lex_state = 4}, - [582] = {.lex_state = 9}, - [583] = {.lex_state = 1}, - [584] = {.lex_state = 4}, + [580] = {.lex_state = 0}, + [581] = {.lex_state = 0}, + [582] = {.lex_state = 0}, + [583] = {.lex_state = 9}, + [584] = {.lex_state = 9}, [585] = {.lex_state = 4}, - [586] = {.lex_state = 4}, - [587] = {.lex_state = 0}, - [588] = {.lex_state = 1}, - [589] = {.lex_state = 4}, + [586] = {.lex_state = 1}, + [587] = {.lex_state = 4}, + [588] = {.lex_state = 4}, + [589] = {.lex_state = 0}, [590] = {.lex_state = 4}, [591] = {.lex_state = 0}, - [592] = {.lex_state = 0}, - [593] = {.lex_state = 0}, + [592] = {.lex_state = 4}, + [593] = {.lex_state = 4}, [594] = {.lex_state = 0}, - [595] = {.lex_state = 0}, - [596] = {.lex_state = 0}, - [597] = {.lex_state = 0}, - [598] = {.lex_state = 4}, - [599] = {.lex_state = 4}, - [600] = {.lex_state = 4}, + [595] = {.lex_state = 4}, + [596] = {.lex_state = 4}, + [597] = {.lex_state = 4}, + [598] = {.lex_state = 0}, + [599] = {.lex_state = 0}, + [600] = {.lex_state = 0}, [601] = {.lex_state = 4}, [602] = {.lex_state = 4}, [603] = {.lex_state = 4}, @@ -7898,10 +7721,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [606] = {.lex_state = 4}, [607] = {.lex_state = 4}, [608] = {.lex_state = 4}, - [609] = {.lex_state = 4}, - [610] = {.lex_state = 4}, + [609] = {.lex_state = 0}, + [610] = {.lex_state = 1}, [611] = {.lex_state = 4}, - [612] = {.lex_state = 4}, + [612] = {.lex_state = 0}, [613] = {.lex_state = 4}, [614] = {.lex_state = 4}, [615] = {.lex_state = 4}, @@ -7912,26 +7735,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [620] = {.lex_state = 4}, [621] = {.lex_state = 4}, [622] = {.lex_state = 4}, - [623] = {.lex_state = 2}, + [623] = {.lex_state = 4}, [624] = {.lex_state = 4}, - [625] = {.lex_state = 2}, - [626] = {.lex_state = 4}, + [625] = {.lex_state = 4}, + [626] = {.lex_state = 2}, [627] = {.lex_state = 2}, [628] = {.lex_state = 2}, [629] = {.lex_state = 4}, [630] = {.lex_state = 4}, [631] = {.lex_state = 4}, - [632] = {.lex_state = 4}, - [633] = {.lex_state = 4}, + [632] = {.lex_state = 1}, + [633] = {.lex_state = 2}, [634] = {.lex_state = 4}, [635] = {.lex_state = 4}, [636] = {.lex_state = 4}, [637] = {.lex_state = 9}, [638] = {.lex_state = 4}, - [639] = {.lex_state = 1}, + [639] = {.lex_state = 4}, [640] = {.lex_state = 4}, [641] = {.lex_state = 4}, - [642] = {.lex_state = 9}, + [642] = {.lex_state = 4}, [643] = {.lex_state = 4}, [644] = {.lex_state = 4}, [645] = {.lex_state = 4}, @@ -7939,29 +7762,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [647] = {.lex_state = 4}, [648] = {.lex_state = 4}, [649] = {.lex_state = 4}, - [650] = {.lex_state = 4}, + [650] = {.lex_state = 1}, [651] = {.lex_state = 1}, - [652] = {.lex_state = 4}, - [653] = {.lex_state = 4}, - [654] = {.lex_state = 9}, + [652] = {.lex_state = 1}, + [653] = {.lex_state = 1}, + [654] = {.lex_state = 4}, [655] = {.lex_state = 4}, - [656] = {.lex_state = 2}, - [657] = {.lex_state = 4}, + [656] = {.lex_state = 9}, + [657] = {.lex_state = 1}, [658] = {.lex_state = 4}, [659] = {.lex_state = 4}, [660] = {.lex_state = 4}, - [661] = {.lex_state = 4}, + [661] = {.lex_state = 2}, [662] = {.lex_state = 4}, [663] = {.lex_state = 2}, - [664] = {.lex_state = 4}, - [665] = {.lex_state = 2}, - [666] = {.lex_state = 2}, + [664] = {.lex_state = 2}, + [665] = {.lex_state = 4}, + [666] = {.lex_state = 4}, [667] = {.lex_state = 4}, - [668] = {.lex_state = 9}, + [668] = {.lex_state = 4}, [669] = {.lex_state = 4}, - [670] = {.lex_state = 4}, + [670] = {.lex_state = 9}, [671] = {.lex_state = 4}, - [672] = {.lex_state = 4}, + [672] = {.lex_state = 2}, [673] = {.lex_state = 4}, [674] = {.lex_state = 4}, [675] = {.lex_state = 4}, @@ -7975,104 +7798,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [683] = {.lex_state = 4}, [684] = {.lex_state = 4}, [685] = {.lex_state = 4}, - [686] = {.lex_state = 4}, + [686] = {.lex_state = 2}, [687] = {.lex_state = 4}, - [688] = {.lex_state = 2}, - [689] = {.lex_state = 17}, + [688] = {.lex_state = 4}, + [689] = {.lex_state = 4}, [690] = {.lex_state = 4}, [691] = {.lex_state = 4}, - [692] = {.lex_state = 2}, - [693] = {.lex_state = 9}, - [694] = {.lex_state = 2}, + [692] = {.lex_state = 4}, + [693] = {.lex_state = 4}, + [694] = {.lex_state = 4}, [695] = {.lex_state = 9}, [696] = {.lex_state = 9}, - [697] = {.lex_state = 9}, - [698] = {.lex_state = 4}, - [699] = {.lex_state = 4}, - [700] = {.lex_state = 4}, - [701] = {.lex_state = 4}, - [702] = {.lex_state = 9}, - [703] = {.lex_state = 9}, - [704] = {.lex_state = 1}, - [705] = {.lex_state = 4}, - [706] = {.lex_state = 1}, - [707] = {.lex_state = 2}, + [697] = {.lex_state = 4}, + [698] = {.lex_state = 17}, + [699] = {.lex_state = 1}, + [700] = {.lex_state = 1}, + [701] = {.lex_state = 1}, + [702] = {.lex_state = 1}, + [703] = {.lex_state = 1}, + [704] = {.lex_state = 9}, + [705] = {.lex_state = 2}, + [706] = {.lex_state = 4}, + [707] = {.lex_state = 9}, [708] = {.lex_state = 4}, - [709] = {.lex_state = 4}, - [710] = {.lex_state = 1}, + [709] = {.lex_state = 9}, + [710] = {.lex_state = 9}, [711] = {.lex_state = 4}, [712] = {.lex_state = 4}, - [713] = {.lex_state = 17}, + [713] = {.lex_state = 2}, [714] = {.lex_state = 4}, - [715] = {.lex_state = 9}, - [716] = {.lex_state = 1}, - [717] = {.lex_state = 1}, - [718] = {.lex_state = 17}, - [719] = {.lex_state = 4}, - [720] = {.lex_state = 4}, + [715] = {.lex_state = 1}, + [716] = {.lex_state = 4}, + [717] = {.lex_state = 4}, + [718] = {.lex_state = 2}, + [719] = {.lex_state = 1}, + [720] = {.lex_state = 9}, [721] = {.lex_state = 4}, [722] = {.lex_state = 4}, [723] = {.lex_state = 4}, - [724] = {.lex_state = 4}, + [724] = {.lex_state = 1}, [725] = {.lex_state = 4}, [726] = {.lex_state = 4}, - [727] = {.lex_state = 4}, + [727] = {.lex_state = 17}, [728] = {.lex_state = 4}, [729] = {.lex_state = 4}, - [730] = {.lex_state = 9}, - [731] = {.lex_state = 9}, - [732] = {.lex_state = 4}, + [730] = {.lex_state = 4}, + [731] = {.lex_state = 4}, + [732] = {.lex_state = 9}, [733] = {.lex_state = 4}, - [734] = {.lex_state = 1}, - [735] = {.lex_state = 9}, + [734] = {.lex_state = 9}, + [735] = {.lex_state = 4}, [736] = {.lex_state = 4}, - [737] = {.lex_state = 4}, + [737] = {.lex_state = 17}, [738] = {.lex_state = 4}, [739] = {.lex_state = 4}, [740] = {.lex_state = 4}, - [741] = {.lex_state = 4}, - [742] = {.lex_state = 4}, + [741] = {.lex_state = 1}, + [742] = {.lex_state = 9}, [743] = {.lex_state = 4}, [744] = {.lex_state = 4}, - [745] = {.lex_state = 4}, + [745] = {.lex_state = 9}, [746] = {.lex_state = 4}, [747] = {.lex_state = 4}, [748] = {.lex_state = 4}, [749] = {.lex_state = 4}, [750] = {.lex_state = 4}, [751] = {.lex_state = 4}, - [752] = {.lex_state = 9}, - [753] = {.lex_state = 9}, - [754] = {.lex_state = 1}, - [755] = {.lex_state = 1}, - [756] = {.lex_state = 1}, - [757] = {.lex_state = 9}, - [758] = {.lex_state = 1}, - [759] = {.lex_state = 1}, - [760] = {.lex_state = 1}, + [752] = {.lex_state = 4}, + [753] = {.lex_state = 4}, + [754] = {.lex_state = 4}, + [755] = {.lex_state = 4}, + [756] = {.lex_state = 4}, + [757] = {.lex_state = 4}, + [758] = {.lex_state = 4}, + [759] = {.lex_state = 4}, + [760] = {.lex_state = 4}, [761] = {.lex_state = 1}, [762] = {.lex_state = 1}, - [763] = {.lex_state = 1}, + [763] = {.lex_state = 4}, [764] = {.lex_state = 1}, [765] = {.lex_state = 1}, - [766] = {.lex_state = 1}, - [767] = {.lex_state = 2}, + [766] = {.lex_state = 9}, + [767] = {.lex_state = 9}, [768] = {.lex_state = 1}, [769] = {.lex_state = 1}, [770] = {.lex_state = 1}, [771] = {.lex_state = 1}, [772] = {.lex_state = 1}, - [773] = {.lex_state = 17}, + [773] = {.lex_state = 9}, [774] = {.lex_state = 1}, [775] = {.lex_state = 1}, [776] = {.lex_state = 1}, - [777] = {.lex_state = 1}, + [777] = {.lex_state = 2}, [778] = {.lex_state = 1}, [779] = {.lex_state = 1}, [780] = {.lex_state = 1}, [781] = {.lex_state = 1}, [782] = {.lex_state = 1}, - [783] = {.lex_state = 1}, + [783] = {.lex_state = 17}, [784] = {.lex_state = 1}, [785] = {.lex_state = 1}, [786] = {.lex_state = 1}, @@ -8091,9 +7914,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [799] = {.lex_state = 1}, [800] = {.lex_state = 1}, [801] = {.lex_state = 1}, - [802] = {.lex_state = 17}, + [802] = {.lex_state = 1}, [803] = {.lex_state = 1}, - [804] = {.lex_state = 1}, + [804] = {.lex_state = 17}, [805] = {.lex_state = 1}, [806] = {.lex_state = 1}, [807] = {.lex_state = 1}, @@ -8123,12 +7946,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [831] = {.lex_state = 1}, [832] = {.lex_state = 1}, [833] = {.lex_state = 1}, - [834] = {.lex_state = 9}, + [834] = {.lex_state = 1}, [835] = {.lex_state = 1}, [836] = {.lex_state = 1}, [837] = {.lex_state = 1}, [838] = {.lex_state = 1}, - [839] = {.lex_state = 1}, + [839] = {.lex_state = 9}, [840] = {.lex_state = 1}, [841] = {.lex_state = 1}, [842] = {.lex_state = 1}, @@ -8176,7 +7999,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [884] = {.lex_state = 1}, [885] = {.lex_state = 1}, [886] = {.lex_state = 1}, - [887] = {.lex_state = 6}, + [887] = {.lex_state = 1}, [888] = {.lex_state = 1}, [889] = {.lex_state = 1}, [890] = {.lex_state = 1}, @@ -8185,17 +8008,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [893] = {.lex_state = 6}, [894] = {.lex_state = 1}, [895] = {.lex_state = 1}, - [896] = {.lex_state = 6}, + [896] = {.lex_state = 1}, [897] = {.lex_state = 1}, [898] = {.lex_state = 1}, [899] = {.lex_state = 1}, - [900] = {.lex_state = 1}, + [900] = {.lex_state = 6}, [901] = {.lex_state = 1}, - [902] = {.lex_state = 1}, + [902] = {.lex_state = 6}, [903] = {.lex_state = 1}, [904] = {.lex_state = 1}, [905] = {.lex_state = 1}, - [906] = {.lex_state = 9}, + [906] = {.lex_state = 1}, [907] = {.lex_state = 1}, [908] = {.lex_state = 1}, [909] = {.lex_state = 1}, @@ -8212,21 +8035,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [920] = {.lex_state = 1}, [921] = {.lex_state = 1}, [922] = {.lex_state = 1}, - [923] = {.lex_state = 1}, + [923] = {.lex_state = 9}, [924] = {.lex_state = 1}, [925] = {.lex_state = 1}, [926] = {.lex_state = 1}, [927] = {.lex_state = 1}, [928] = {.lex_state = 1}, - [929] = {.lex_state = 0}, + [929] = {.lex_state = 1}, [930] = {.lex_state = 1}, [931] = {.lex_state = 1}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 1}, + [932] = {.lex_state = 1}, + [933] = {.lex_state = 0}, [934] = {.lex_state = 1}, [935] = {.lex_state = 1}, - [936] = {.lex_state = 1}, - [937] = {.lex_state = 8}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 1}, [938] = {.lex_state = 1}, [939] = {.lex_state = 1}, [940] = {.lex_state = 1}, @@ -8245,21 +8068,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [953] = {.lex_state = 1}, [954] = {.lex_state = 1}, [955] = {.lex_state = 1}, - [956] = {.lex_state = 8}, + [956] = {.lex_state = 1}, [957] = {.lex_state = 1}, [958] = {.lex_state = 1}, [959] = {.lex_state = 1}, - [960] = {.lex_state = 8}, + [960] = {.lex_state = 1}, [961] = {.lex_state = 1}, - [962] = {.lex_state = 1}, + [962] = {.lex_state = 8}, [963] = {.lex_state = 1}, [964] = {.lex_state = 1}, [965] = {.lex_state = 1}, [966] = {.lex_state = 1}, [967] = {.lex_state = 1}, - [968] = {.lex_state = 6}, + [968] = {.lex_state = 1}, [969] = {.lex_state = 1}, - [970] = {.lex_state = 1}, + [970] = {.lex_state = 6}, [971] = {.lex_state = 1}, [972] = {.lex_state = 1}, [973] = {.lex_state = 1}, @@ -8267,161 +8090,161 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [975] = {.lex_state = 1}, [976] = {.lex_state = 1}, [977] = {.lex_state = 1}, - [978] = {.lex_state = 1}, - [979] = {.lex_state = 6}, - [980] = {.lex_state = 9}, + [978] = {.lex_state = 8}, + [979] = {.lex_state = 1}, + [980] = {.lex_state = 1}, [981] = {.lex_state = 1}, - [982] = {.lex_state = 1}, - [983] = {.lex_state = 1}, - [984] = {.lex_state = 0}, - [985] = {.lex_state = 0}, + [982] = {.lex_state = 6}, + [983] = {.lex_state = 8}, + [984] = {.lex_state = 1}, + [985] = {.lex_state = 1}, [986] = {.lex_state = 1}, - [987] = {.lex_state = 9}, - [988] = {.lex_state = 1}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, + [990] = {.lex_state = 1}, + [991] = {.lex_state = 1}, [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}, + [998] = {.lex_state = 1}, [999] = {.lex_state = 0}, [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 0}, + [1001] = {.lex_state = 1}, + [1002] = {.lex_state = 9}, [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 1}, - [1007] = {.lex_state = 1}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 1}, + [1009] = {.lex_state = 1}, + [1010] = {.lex_state = 9}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 1}, - [1014] = {.lex_state = 1}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 1}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 8}, + [1015] = {.lex_state = 1}, + [1016] = {.lex_state = 0}, [1017] = {.lex_state = 1}, [1018] = {.lex_state = 1}, [1019] = {.lex_state = 1}, [1020] = {.lex_state = 1}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 9}, + [1021] = {.lex_state = 1}, + [1022] = {.lex_state = 1}, [1023] = {.lex_state = 1}, [1024] = {.lex_state = 1}, [1025] = {.lex_state = 0}, [1026] = {.lex_state = 9}, - [1027] = {.lex_state = 0}, + [1027] = {.lex_state = 1}, [1028] = {.lex_state = 1}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 1}, - [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 8}, + [1029] = {.lex_state = 1}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 1}, + [1032] = {.lex_state = 1}, + [1033] = {.lex_state = 0}, [1034] = {.lex_state = 1}, [1035] = {.lex_state = 1}, - [1036] = {.lex_state = 1}, + [1036] = {.lex_state = 0}, [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 1}, - [1039] = {.lex_state = 9}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0}, + [1043] = {.lex_state = 1}, [1044] = {.lex_state = 1}, [1045] = {.lex_state = 0}, [1046] = {.lex_state = 1}, [1047] = {.lex_state = 1}, - [1048] = {.lex_state = 1}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 9}, - [1051] = {.lex_state = 1}, - [1052] = {.lex_state = 1}, - [1053] = {.lex_state = 1}, + [1048] = {.lex_state = 0}, + [1049] = {.lex_state = 1}, + [1050] = {.lex_state = 1}, + [1051] = {.lex_state = 0}, + [1052] = {.lex_state = 9}, + [1053] = {.lex_state = 9}, [1054] = {.lex_state = 9}, [1055] = {.lex_state = 1}, [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, + [1057] = {.lex_state = 9}, [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 1}, + [1059] = {.lex_state = 1}, + [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 1}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 0}, + [1063] = {.lex_state = 1}, + [1064] = {.lex_state = 1}, + [1065] = {.lex_state = 1}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 9}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 1}, - [1075] = {.lex_state = 0}, + [1072] = {.lex_state = 1}, + [1073] = {.lex_state = 1}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 1}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 9}, + [1077] = {.lex_state = 0}, [1078] = {.lex_state = 0}, [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 1}, - [1081] = {.lex_state = 1}, - [1082] = {.lex_state = 9}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 9}, + [1082] = {.lex_state = 0}, [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 9}, - [1088] = {.lex_state = 9}, - [1089] = {.lex_state = 0}, + [1086] = {.lex_state = 1}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 0}, + [1089] = {.lex_state = 9}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 1}, - [1092] = {.lex_state = 1}, - [1093] = {.lex_state = 0}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 0}, + [1093] = {.lex_state = 1}, [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 9}, + [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 9}, - [1099] = {.lex_state = 9}, - [1100] = {.lex_state = 1}, + [1098] = {.lex_state = 0}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, [1102] = {.lex_state = 1}, - [1103] = {.lex_state = 0}, + [1103] = {.lex_state = 1}, [1104] = {.lex_state = 0}, [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0}, [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 1}, + [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 1}, + [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 0}, + [1118] = {.lex_state = 9}, [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 1}, - [1122] = {.lex_state = 9}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 1}, + [1127] = {.lex_state = 1}, + [1128] = {.lex_state = 9}, + [1129] = {.lex_state = 9}, + [1130] = {.lex_state = 9}, [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 1}, + [1132] = {.lex_state = 0}, [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, @@ -8434,14 +8257,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1142] = {.lex_state = 0}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, + [1145] = {.lex_state = 1}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, + [1147] = {.lex_state = 1}, [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, + [1149] = {.lex_state = 9}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, + [1151] = {.lex_state = 1}, + [1152] = {.lex_state = 9}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, @@ -8453,19 +8276,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 1}, + [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, + [1166] = {.lex_state = 1}, + [1167] = {.lex_state = 1}, [1168] = {.lex_state = 1}, [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 1}, + [1171] = {.lex_state = 0}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, + [1175] = {.lex_state = 9}, + [1176] = {.lex_state = 1}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, @@ -8475,12 +8298,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1183] = {.lex_state = 0}, [1184] = {.lex_state = 0}, [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, + [1186] = {.lex_state = 1}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, + [1190] = {.lex_state = 9}, + [1191] = {.lex_state = 1}, [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, @@ -8490,20 +8313,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 1}, - [1203] = {.lex_state = 1}, + [1201] = {.lex_state = 1}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, + [1206] = {.lex_state = 1}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 0}, + [1210] = {.lex_state = 1}, [1211] = {.lex_state = 0}, [1212] = {.lex_state = 0}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, + [1214] = {.lex_state = 1}, [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, @@ -8514,58 +8337,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1222] = {.lex_state = 0}, [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 1}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 9}, + [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 1}, + [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 9}, + [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 1}, + [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}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 1}, + [1244] = {.lex_state = 9}, + [1245] = {.lex_state = 9}, [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 9}, + [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 1}, - [1251] = {.lex_state = 1}, - [1252] = {.lex_state = 9}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 1}, [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 9}, + [1255] = {.lex_state = 9}, + [1256] = {.lex_state = 0}, [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, + [1258] = {.lex_state = 9}, [1259] = {.lex_state = 0}, [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 1}, - [1263] = {.lex_state = 1}, - [1264] = {.lex_state = 0}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 1}, [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 9}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 1}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 1}, + [1269] = {.lex_state = 0}, [1270] = {.lex_state = 0}, [1271] = {.lex_state = 0}, [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, + [1274] = {.lex_state = 1}, [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, + [1276] = {.lex_state = 9}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, [1279] = {.lex_state = 0}, @@ -8576,15 +8399,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 9}, + [1287] = {.lex_state = 0}, [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, [1291] = {.lex_state = 0}, [1292] = {.lex_state = 0}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 1}, + [1294] = {.lex_state = 9}, + [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, @@ -8592,81 +8415,88 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1300] = {.lex_state = 0}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 1}, - [1303] = {.lex_state = 1}, - [1304] = {.lex_state = 1}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 0}, [1305] = {.lex_state = 0}, [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, + [1307] = {.lex_state = 1}, [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, + [1309] = {.lex_state = 1}, + [1310] = {.lex_state = 1}, [1311] = {.lex_state = 1}, - [1312] = {.lex_state = 0}, + [1312] = {.lex_state = 1}, [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, [1315] = {.lex_state = 0}, [1316] = {.lex_state = 0}, [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 1}, - [1319] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 1}, [1320] = {.lex_state = 0}, [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 1}, + [1322] = {.lex_state = 1}, + [1323] = {.lex_state = 0}, [1324] = {.lex_state = 0}, [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, + [1326] = {.lex_state = 1}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, [1329] = {.lex_state = 0}, [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 1}, - [1332] = {.lex_state = 1}, - [1333] = {.lex_state = 1}, + [1331] = {.lex_state = 0}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 1}, - [1338] = {.lex_state = 1}, - [1339] = {.lex_state = 1}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, [1341] = {.lex_state = 0}, [1342] = {.lex_state = 0}, [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, + [1346] = {.lex_state = 1}, [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, + [1348] = {.lex_state = 1}, [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 1}, + [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, [1352] = {.lex_state = 0}, [1353] = {.lex_state = 0}, [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, + [1355] = {.lex_state = 1}, + [1356] = {.lex_state = 1}, [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 1}, - [1359] = {.lex_state = 1}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 1}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, [1369] = {.lex_state = 0}, [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 0}, + [1371] = {.lex_state = 1}, + [1372] = {.lex_state = 1}, [1373] = {.lex_state = 0}, [1374] = {.lex_state = 1}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 0}, + [1381] = {.lex_state = 1}, + [1382] = {.lex_state = 1}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8808,82 +8638,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(1308), - [sym__toplevel_statement] = STATE(2), - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym_program] = STATE(1377), + [sym__toplevel_statement] = STATE(3), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(2), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(713), - [sym_type_parameters] = STATE(776), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(758), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__method_header] = STATE(1166), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym_method_declaration] = STATE(2), - [sym__reserved_identifier] = STATE(427), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(3), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(727), + [sym_type_parameters] = STATE(799), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(768), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym__method_header] = STATE(1170), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym_method_declaration] = STATE(3), + [sym__reserved_identifier] = STATE(431), + [aux_sym_program_repeat1] = STATE(3), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -8961,82 +8791,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__toplevel_statement] = STATE(3), - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__toplevel_statement] = STATE(2), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(3), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(713), - [sym_type_parameters] = STATE(776), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(758), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__method_header] = STATE(1166), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym_method_declaration] = STATE(3), - [sym__reserved_identifier] = STATE(427), - [aux_sym_program_repeat1] = STATE(3), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(2), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(727), + [sym_type_parameters] = STATE(799), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(768), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym__method_header] = STATE(1170), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym_method_declaration] = STATE(2), + [sym__reserved_identifier] = STATE(431), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [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(102), + [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), + [anon_sym_DQUOTE] = ACTIONS(108), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(111), + [sym_null_literal] = ACTIONS(102), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_final] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(126), + [anon_sym_TILDE] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_new] = ACTIONS(132), + [anon_sym_class] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(138), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_default] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(144), + [anon_sym_assert] = ACTIONS(147), + [anon_sym_do] = ACTIONS(150), + [anon_sym_while] = ACTIONS(153), + [anon_sym_break] = ACTIONS(156), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_return] = ACTIONS(162), + [anon_sym_yield] = ACTIONS(165), + [anon_sym_synchronized] = ACTIONS(168), + [anon_sym_throw] = ACTIONS(171), + [anon_sym_try] = ACTIONS(174), + [anon_sym_if] = ACTIONS(177), + [anon_sym_for] = ACTIONS(180), + [anon_sym_AT] = ACTIONS(183), + [anon_sym_open] = ACTIONS(186), + [anon_sym_module] = ACTIONS(189), + [anon_sym_static] = ACTIONS(123), + [anon_sym_with] = ACTIONS(192), + [anon_sym_package] = ACTIONS(195), + [anon_sym_import] = ACTIONS(198), + [anon_sym_enum] = ACTIONS(201), + [anon_sym_public] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_strictfp] = ACTIONS(123), + [anon_sym_native] = ACTIONS(123), + [anon_sym_transient] = ACTIONS(123), + [anon_sym_volatile] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(204), + [anon_sym_non_DASHsealed] = ACTIONS(207), + [anon_sym_record] = ACTIONS(210), + [anon_sym_ATinterface] = ACTIONS(213), + [anon_sym_interface] = ACTIONS(216), + [anon_sym_byte] = ACTIONS(219), + [anon_sym_short] = ACTIONS(219), + [anon_sym_int] = ACTIONS(219), + [anon_sym_long] = ACTIONS(219), + [anon_sym_char] = ACTIONS(219), + [anon_sym_float] = ACTIONS(222), + [anon_sym_double] = ACTIONS(222), + [sym_boolean_type] = ACTIONS(225), + [sym_void_type] = ACTIONS(225), + [sym_this] = ACTIONS(228), + [sym_super] = ACTIONS(231), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [3] = { + [sym__toplevel_statement] = STATE(2), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(122), + [sym_statement] = STATE(2), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(727), + [sym_type_parameters] = STATE(799), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(768), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym__method_header] = STATE(1170), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym_method_declaration] = STATE(2), + [sym__reserved_identifier] = STATE(431), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), + [ts_builtin_sym_end] = ACTIONS(234), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9112,232 +9094,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [3] = { - [sym__toplevel_statement] = STATE(3), - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(3), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(713), - [sym_type_parameters] = STATE(776), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(758), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__method_header] = STATE(1166), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym_method_declaration] = STATE(3), - [sym__reserved_identifier] = STATE(427), - [aux_sym_program_repeat1] = STATE(3), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(99), - [sym_identifier] = ACTIONS(101), - [sym_decimal_integer_literal] = ACTIONS(104), - [sym_hex_integer_literal] = ACTIONS(104), - [sym_octal_integer_literal] = ACTIONS(104), - [sym_binary_integer_literal] = ACTIONS(107), - [sym_decimal_floating_point_literal] = ACTIONS(107), - [sym_hex_floating_point_literal] = ACTIONS(104), - [sym_true] = ACTIONS(104), - [sym_false] = ACTIONS(104), - [sym_character_literal] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(113), - [sym_null_literal] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_final] = ACTIONS(125), - [anon_sym_BANG] = ACTIONS(128), - [anon_sym_TILDE] = ACTIONS(128), - [anon_sym_PLUS_PLUS] = ACTIONS(131), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_new] = ACTIONS(134), - [anon_sym_class] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_default] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(146), - [anon_sym_assert] = ACTIONS(149), - [anon_sym_do] = ACTIONS(152), - [anon_sym_while] = ACTIONS(155), - [anon_sym_break] = ACTIONS(158), - [anon_sym_continue] = ACTIONS(161), - [anon_sym_return] = ACTIONS(164), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_synchronized] = ACTIONS(170), - [anon_sym_throw] = ACTIONS(173), - [anon_sym_try] = ACTIONS(176), - [anon_sym_if] = ACTIONS(179), - [anon_sym_for] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(185), - [anon_sym_open] = ACTIONS(188), - [anon_sym_module] = ACTIONS(191), - [anon_sym_static] = ACTIONS(125), - [anon_sym_with] = ACTIONS(194), - [anon_sym_package] = ACTIONS(197), - [anon_sym_import] = ACTIONS(200), - [anon_sym_enum] = ACTIONS(203), - [anon_sym_public] = ACTIONS(125), - [anon_sym_protected] = ACTIONS(125), - [anon_sym_private] = ACTIONS(125), - [anon_sym_abstract] = ACTIONS(125), - [anon_sym_strictfp] = ACTIONS(125), - [anon_sym_native] = ACTIONS(125), - [anon_sym_transient] = ACTIONS(125), - [anon_sym_volatile] = ACTIONS(125), - [anon_sym_sealed] = ACTIONS(206), - [anon_sym_non_DASHsealed] = ACTIONS(209), - [anon_sym_record] = ACTIONS(212), - [anon_sym_ATinterface] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(218), - [anon_sym_byte] = ACTIONS(221), - [anon_sym_short] = ACTIONS(221), - [anon_sym_int] = ACTIONS(221), - [anon_sym_long] = ACTIONS(221), - [anon_sym_char] = ACTIONS(221), - [anon_sym_float] = ACTIONS(224), - [anon_sym_double] = ACTIONS(224), - [sym_boolean_type] = ACTIONS(227), - [sym_void_type] = ACTIONS(227), - [sym_this] = ACTIONS(230), - [sym_super] = ACTIONS(233), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [4] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_switch_label] = STATE(1322), - [sym_statement] = STATE(7), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat1] = STATE(388), - [aux_sym_switch_block_statement_group_repeat2] = STATE(7), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_switch_label] = STATE(1373), + [sym_statement] = STATE(6), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_switch_block_statement_group_repeat1] = STATE(389), + [aux_sym_switch_block_statement_group_repeat2] = STATE(6), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9415,79 +9245,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), [sym_primary_expression] = STATE(636), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_type_arguments] = STATE(1251), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_type_arguments] = STATE(1274), [sym_switch_expression] = STATE(121), [sym_statement] = STATE(11), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), [sym_explicit_constructor_invocation] = STATE(10), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), [aux_sym_switch_block_statement_group_repeat2] = STATE(11), - [aux_sym_modifiers_repeat1] = STATE(509), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9565,225 +9395,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(258), - [sym_decimal_integer_literal] = ACTIONS(261), - [sym_hex_integer_literal] = ACTIONS(261), - [sym_octal_integer_literal] = ACTIONS(261), - [sym_binary_integer_literal] = ACTIONS(264), - [sym_decimal_floating_point_literal] = ACTIONS(264), - [sym_hex_floating_point_literal] = ACTIONS(261), - [sym_true] = ACTIONS(261), - [sym_false] = ACTIONS(261), - [sym_character_literal] = ACTIONS(264), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_RBRACE] = ACTIONS(273), - [sym_null_literal] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_final] = ACTIONS(281), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_new] = ACTIONS(290), - [anon_sym_class] = ACTIONS(293), - [anon_sym_switch] = ACTIONS(296), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_case] = ACTIONS(302), - [anon_sym_default] = ACTIONS(281), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_do] = ACTIONS(310), - [anon_sym_while] = ACTIONS(313), - [anon_sym_break] = ACTIONS(316), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_return] = ACTIONS(322), - [anon_sym_yield] = ACTIONS(325), - [anon_sym_synchronized] = ACTIONS(328), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_try] = ACTIONS(334), - [anon_sym_if] = ACTIONS(337), - [anon_sym_for] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_open] = ACTIONS(346), - [anon_sym_module] = ACTIONS(349), - [anon_sym_static] = ACTIONS(281), - [anon_sym_with] = ACTIONS(352), - [anon_sym_package] = ACTIONS(355), - [anon_sym_import] = ACTIONS(358), - [anon_sym_enum] = ACTIONS(361), - [anon_sym_public] = ACTIONS(281), - [anon_sym_protected] = ACTIONS(281), - [anon_sym_private] = ACTIONS(281), - [anon_sym_abstract] = ACTIONS(281), - [anon_sym_strictfp] = ACTIONS(281), - [anon_sym_native] = ACTIONS(281), - [anon_sym_transient] = ACTIONS(281), - [anon_sym_volatile] = ACTIONS(281), - [anon_sym_sealed] = ACTIONS(364), - [anon_sym_non_DASHsealed] = ACTIONS(367), - [anon_sym_record] = ACTIONS(370), - [anon_sym_ATinterface] = ACTIONS(373), - [anon_sym_interface] = ACTIONS(376), - [anon_sym_byte] = ACTIONS(379), - [anon_sym_short] = ACTIONS(379), - [anon_sym_int] = ACTIONS(379), - [anon_sym_long] = ACTIONS(379), - [anon_sym_char] = ACTIONS(379), - [anon_sym_float] = ACTIONS(382), - [anon_sym_double] = ACTIONS(382), - [sym_boolean_type] = ACTIONS(385), - [sym_void_type] = ACTIONS(385), - [sym_this] = ACTIONS(388), - [sym_super] = ACTIONS(391), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [7] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(7), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_switch_block_statement_group_repeat2] = STATE(7), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9796,7 +9478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(258), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -9810,8 +9492,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_case] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), + [anon_sym_case] = ACTIONS(260), + [anon_sym_default] = ACTIONS(260), [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), @@ -9860,78 +9542,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [7] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(121), + [sym_statement] = STATE(7), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_switch_block_statement_group_repeat2] = STATE(7), + [aux_sym_modifiers_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(262), + [sym_decimal_integer_literal] = ACTIONS(265), + [sym_hex_integer_literal] = ACTIONS(265), + [sym_octal_integer_literal] = ACTIONS(265), + [sym_binary_integer_literal] = ACTIONS(268), + [sym_decimal_floating_point_literal] = ACTIONS(268), + [sym_hex_floating_point_literal] = ACTIONS(265), + [sym_true] = ACTIONS(265), + [sym_false] = ACTIONS(265), + [sym_character_literal] = ACTIONS(268), + [anon_sym_DQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(274), + [anon_sym_RBRACE] = ACTIONS(277), + [sym_null_literal] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_final] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(288), + [anon_sym_TILDE] = ACTIONS(288), + [anon_sym_PLUS_PLUS] = ACTIONS(291), + [anon_sym_DASH_DASH] = ACTIONS(291), + [anon_sym_new] = ACTIONS(294), + [anon_sym_class] = ACTIONS(297), + [anon_sym_switch] = ACTIONS(300), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_case] = ACTIONS(306), + [anon_sym_default] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(308), + [anon_sym_assert] = ACTIONS(311), + [anon_sym_do] = ACTIONS(314), + [anon_sym_while] = ACTIONS(317), + [anon_sym_break] = ACTIONS(320), + [anon_sym_continue] = ACTIONS(323), + [anon_sym_return] = ACTIONS(326), + [anon_sym_yield] = ACTIONS(329), + [anon_sym_synchronized] = ACTIONS(332), + [anon_sym_throw] = ACTIONS(335), + [anon_sym_try] = ACTIONS(338), + [anon_sym_if] = ACTIONS(341), + [anon_sym_for] = ACTIONS(344), + [anon_sym_AT] = ACTIONS(347), + [anon_sym_open] = ACTIONS(350), + [anon_sym_module] = ACTIONS(353), + [anon_sym_static] = ACTIONS(285), + [anon_sym_with] = ACTIONS(356), + [anon_sym_package] = ACTIONS(359), + [anon_sym_import] = ACTIONS(362), + [anon_sym_enum] = ACTIONS(365), + [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(368), + [anon_sym_non_DASHsealed] = ACTIONS(371), + [anon_sym_record] = ACTIONS(374), + [anon_sym_ATinterface] = ACTIONS(377), + [anon_sym_interface] = ACTIONS(380), + [anon_sym_byte] = ACTIONS(383), + [anon_sym_short] = ACTIONS(383), + [anon_sym_int] = ACTIONS(383), + [anon_sym_long] = ACTIONS(383), + [anon_sym_char] = ACTIONS(383), + [anon_sym_float] = ACTIONS(386), + [anon_sym_double] = ACTIONS(386), + [sym_boolean_type] = ACTIONS(389), + [sym_void_type] = ACTIONS(389), + [sym_this] = ACTIONS(392), + [sym_super] = ACTIONS(395), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [8] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(7), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_switch_block_statement_group_repeat2] = STATE(7), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10008,77 +9838,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), [sym_statement] = STATE(8), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), [aux_sym_switch_block_statement_group_repeat2] = STATE(8), - [aux_sym_modifiers_repeat1] = STATE(509), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10155,77 +9985,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), [sym_statement] = STATE(12), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), [aux_sym_switch_block_statement_group_repeat2] = STATE(12), - [aux_sym_modifiers_repeat1] = STATE(509), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10302,77 +10132,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(7), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_switch_block_statement_group_repeat2] = STATE(7), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10449,77 +10279,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(7), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_switch_block_statement_group_repeat2] = STATE(7), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10596,77 +10426,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), [sym_statement] = STATE(14), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), [aux_sym_switch_block_statement_group_repeat2] = STATE(14), - [aux_sym_modifiers_repeat1] = STATE(509), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10743,77 +10573,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(7), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_switch_block_statement_group_repeat2] = STATE(7), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10890,77 +10720,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(307), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(121), + [sym_statement] = STATE(321), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -10989,7 +10819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(242), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -10997,8 +10827,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(244), + [anon_sym_for] = ACTIONS(246), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), @@ -11035,77 +10865,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(316), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(122), + [sym_statement] = STATE(375), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -11134,7 +10964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -11142,8 +10972,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), @@ -11180,77 +11010,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(1339), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(122), + [sym_statement] = STATE(287), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -11279,7 +11109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -11287,8 +11117,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), @@ -11325,77 +11155,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(326), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(1319), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -11424,7 +11254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), + [anon_sym_while] = ACTIONS(412), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -11432,8 +11262,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), + [anon_sym_if] = ACTIONS(414), + [anon_sym_for] = ACTIONS(416), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), @@ -11470,76 +11300,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(383), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(318), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11615,76 +11445,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(257), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(321), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11760,76 +11590,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(319), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(338), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11905,76 +11735,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(393), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(339), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12050,76 +11880,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(275), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(340), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12195,76 +12025,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(276), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(341), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12340,76 +12170,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(278), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(342), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12485,76 +12315,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(282), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(285), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12630,76 +12460,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(283), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(350), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12775,76 +12605,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(292), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(351), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12920,76 +12750,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(293), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(352), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13065,76 +12895,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(294), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(388), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13210,76 +13040,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(295), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(353), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13355,76 +13185,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(297), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(354), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13500,76 +13330,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(298), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(355), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13645,76 +13475,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(299), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(356), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13790,76 +13620,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(300), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(359), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13935,76 +13765,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(304), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(360), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14080,76 +13910,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(305), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(361), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14225,76 +14055,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(306), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(362), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14370,76 +14200,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(307), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(363), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14515,76 +14345,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(309), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(364), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14660,76 +14490,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(311), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(365), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14805,76 +14635,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(312), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(366), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14950,76 +14780,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(313), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(367), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15095,76 +14925,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(314), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(368), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15240,76 +15070,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(315), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(369), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15385,76 +15215,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(316), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(391), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15530,77 +15360,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [47] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(346), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(121), + [sym_statement] = STATE(285), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -15629,7 +15459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), + [anon_sym_while] = ACTIONS(242), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -15637,8 +15467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), + [anon_sym_if] = ACTIONS(244), + [anon_sym_for] = ACTIONS(246), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), @@ -15675,76 +15505,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(319), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(392), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15820,76 +15650,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [49] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(389), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(375), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15965,76 +15795,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [50] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(346), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(287), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16110,76 +15940,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(326), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(318), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16255,76 +16085,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(383), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(339), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16400,76 +16230,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(257), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(340), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16545,76 +16375,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(275), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(341), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16690,76 +16520,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(278), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(342), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16835,76 +16665,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(282), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(350), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -16980,76 +16810,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [57] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(283), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(351), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17125,76 +16955,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(292), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(352), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17270,76 +17100,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [59] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(293), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(388), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17415,76 +17245,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [60] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(294), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(353), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17560,76 +17390,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(295), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(354), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17705,76 +17535,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [62] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(297), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(355), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17850,76 +17680,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [63] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(298), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(356), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -17995,76 +17825,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(299), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(359), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18140,76 +17970,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(300), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(360), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18285,76 +18115,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [66] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(304), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(361), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18430,76 +18260,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [67] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(305), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(362), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18575,76 +18405,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [68] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(306), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(363), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18720,76 +18550,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [69] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(307), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(364), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -18865,76 +18695,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [70] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(309), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(365), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19010,76 +18840,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [71] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(311), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(366), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19155,76 +18985,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [72] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(312), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(367), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19300,76 +19130,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [73] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(313), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(368), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19445,76 +19275,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [74] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(314), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(369), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -19590,77 +19420,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [75] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(315), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(285), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19689,7 +19519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(412), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19697,8 +19527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(414), + [anon_sym_for] = ACTIONS(416), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), @@ -19735,77 +19565,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [76] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(316), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(1268), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19834,7 +19664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(412), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19842,8 +19672,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(414), + [anon_sym_for] = ACTIONS(416), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), @@ -19880,76 +19710,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [77] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(319), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(375), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20025,76 +19855,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [78] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(1262), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(287), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20170,76 +20000,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [79] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(346), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(318), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20315,76 +20145,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [80] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(326), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(321), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20460,76 +20290,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [81] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(383), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(338), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20605,76 +20435,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [82] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(257), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(339), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20750,76 +20580,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [83] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(275), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(340), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -20895,76 +20725,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [84] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(276), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(341), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21040,76 +20870,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [85] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(278), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(342), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21185,76 +21015,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [86] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(282), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(350), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21330,76 +21160,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [87] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(283), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(351), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21475,76 +21305,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [88] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(292), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(352), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21620,76 +21450,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [89] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(293), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(388), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21765,76 +21595,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [90] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(294), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(353), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -21910,76 +21740,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [91] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(295), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(354), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -22055,76 +21885,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [92] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(297), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(355), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -22200,76 +22030,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [93] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(298), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(356), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -22345,76 +22175,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [94] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(299), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(359), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -22490,76 +22320,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [95] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(300), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(360), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -22635,76 +22465,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [96] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(304), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(361), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -22780,76 +22610,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [97] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(305), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(362), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -22925,76 +22755,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [98] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(306), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(363), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -23070,76 +22900,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [99] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(309), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(364), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -23215,76 +23045,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [100] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(311), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(365), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -23360,76 +23190,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(312), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(366), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -23505,76 +23335,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(313), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(367), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -23650,76 +23480,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [103] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(314), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(368), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -23795,76 +23625,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [104] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(315), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(666), + [sym_statement] = STATE(369), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(410), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -23940,76 +23770,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [105] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(276), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [sym_statement] = STATE(338), + [sym_block] = STATE(377), + [sym_expression_statement] = STATE(377), + [sym_labeled_statement] = STATE(377), + [sym_assert_statement] = STATE(377), + [sym_do_statement] = STATE(377), + [sym_break_statement] = STATE(377), + [sym_continue_statement] = STATE(377), + [sym_return_statement] = STATE(377), + [sym_yield_statement] = STATE(377), + [sym_synchronized_statement] = STATE(377), + [sym_throw_statement] = STATE(377), + [sym_try_statement] = STATE(377), + [sym_try_with_resources_statement] = STATE(377), + [sym_if_statement] = STATE(377), + [sym_while_statement] = STATE(377), + [sym_for_statement] = STATE(377), + [sym_enhanced_for_statement] = STATE(377), + [sym__annotation] = STATE(551), + [sym_marker_annotation] = STATE(551), + [sym_annotation] = STATE(551), + [sym_declaration] = STATE(377), + [sym_module_declaration] = STATE(288), + [sym_package_declaration] = STATE(288), + [sym_import_declaration] = STATE(288), + [sym_enum_declaration] = STATE(288), + [sym_class_declaration] = STATE(288), + [sym_modifiers] = STATE(783), + [sym_record_declaration] = STATE(288), + [sym_annotation_type_declaration] = STATE(288), + [sym_interface_declaration] = STATE(288), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(775), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(377), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(724), + [aux_sym_modifiers_repeat1] = STATE(505), [sym_identifier] = ACTIONS(236), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -24085,46 +23915,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [106] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(723), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(721), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -24138,53 +23968,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(420), + [anon_sym_AMP] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(427), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(423), + [anon_sym_DASH_GT] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_PLUS_PLUS] = ACTIONS(430), + [anon_sym_DASH_DASH] = ACTIONS(430), [anon_sym_new] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(420), - [anon_sym_COLON_COLON] = ACTIONS(422), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(423), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -24205,890 +24035,890 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [107] = { - [ts_builtin_sym_end] = ACTIONS(426), - [sym_identifier] = ACTIONS(428), - [sym_decimal_integer_literal] = ACTIONS(428), - [sym_hex_integer_literal] = ACTIONS(428), - [sym_octal_integer_literal] = ACTIONS(428), - [sym_binary_integer_literal] = ACTIONS(426), - [sym_decimal_floating_point_literal] = ACTIONS(426), - [sym_hex_floating_point_literal] = ACTIONS(428), - [sym_true] = ACTIONS(428), - [sym_false] = ACTIONS(428), - [sym_character_literal] = ACTIONS(426), - [anon_sym_DQUOTE] = ACTIONS(428), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(426), - [anon_sym_RBRACE] = ACTIONS(426), - [sym_null_literal] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_RPAREN] = ACTIONS(426), - [anon_sym_AMP] = ACTIONS(428), - [anon_sym_GT] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(428), - [anon_sym_GT_EQ] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(426), - [anon_sym_EQ_EQ] = ACTIONS(426), - [anon_sym_BANG_EQ] = ACTIONS(426), - [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_PIPE_PIPE] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_SLASH] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_CARET] = ACTIONS(426), - [anon_sym_PERCENT] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(428), - [anon_sym_GT_GT_GT] = ACTIONS(426), - [anon_sym_instanceof] = ACTIONS(428), - [anon_sym_final] = ACTIONS(428), - [anon_sym_DASH_GT] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_COLON] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(428), - [anon_sym_TILDE] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_new] = ACTIONS(428), - [anon_sym_LBRACK] = ACTIONS(426), - [anon_sym_RBRACK] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [anon_sym_class] = ACTIONS(428), - [anon_sym_COLON_COLON] = ACTIONS(426), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(426), - [anon_sym_case] = ACTIONS(428), - [anon_sym_default] = ACTIONS(428), - [anon_sym_when] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_assert] = ACTIONS(428), - [anon_sym_do] = ACTIONS(428), - [anon_sym_while] = ACTIONS(428), - [anon_sym_break] = ACTIONS(428), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_return] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(428), - [anon_sym_synchronized] = ACTIONS(428), - [anon_sym_throw] = ACTIONS(428), - [anon_sym_try] = ACTIONS(428), - [anon_sym_if] = ACTIONS(428), - [anon_sym_else] = ACTIONS(428), - [anon_sym_for] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(428), - [anon_sym_open] = ACTIONS(428), - [anon_sym_module] = ACTIONS(428), - [anon_sym_static] = ACTIONS(428), - [anon_sym_with] = ACTIONS(428), - [anon_sym_package] = ACTIONS(428), - [anon_sym_import] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_public] = ACTIONS(428), - [anon_sym_protected] = ACTIONS(428), - [anon_sym_private] = ACTIONS(428), - [anon_sym_abstract] = ACTIONS(428), - [anon_sym_strictfp] = ACTIONS(428), - [anon_sym_native] = ACTIONS(428), - [anon_sym_transient] = ACTIONS(428), - [anon_sym_volatile] = ACTIONS(428), - [anon_sym_sealed] = ACTIONS(428), - [anon_sym_non_DASHsealed] = ACTIONS(426), - [anon_sym_record] = ACTIONS(428), - [anon_sym_ATinterface] = ACTIONS(426), - [anon_sym_interface] = ACTIONS(428), - [anon_sym_byte] = ACTIONS(428), - [anon_sym_short] = ACTIONS(428), - [anon_sym_int] = ACTIONS(428), - [anon_sym_long] = ACTIONS(428), - [anon_sym_char] = ACTIONS(428), - [anon_sym_float] = ACTIONS(428), - [anon_sym_double] = ACTIONS(428), - [sym_boolean_type] = ACTIONS(428), - [sym_void_type] = ACTIONS(428), - [sym_this] = ACTIONS(428), - [sym_super] = ACTIONS(428), + [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(439), + [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), + [anon_sym_DQUOTE] = ACTIONS(439), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(437), + [sym_null_literal] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(437), + [anon_sym_RPAREN] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_GT] = ACTIONS(439), + [anon_sym_LT] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(437), + [anon_sym_LT_EQ] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(437), + [anon_sym_BANG_EQ] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(437), + [anon_sym_PIPE_PIPE] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(437), + [anon_sym_instanceof] = ACTIONS(439), + [anon_sym_final] = ACTIONS(439), + [anon_sym_DASH_GT] = ACTIONS(437), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(437), + [anon_sym_COLON] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_TILDE] = ACTIONS(437), + [anon_sym_PLUS_PLUS] = ACTIONS(437), + [anon_sym_DASH_DASH] = ACTIONS(437), + [anon_sym_new] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(437), + [anon_sym_RBRACK] = ACTIONS(437), + [anon_sym_DOT] = ACTIONS(439), + [anon_sym_class] = ACTIONS(439), + [anon_sym_COLON_COLON] = ACTIONS(437), + [anon_sym_switch] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(437), + [anon_sym_case] = ACTIONS(439), + [anon_sym_default] = ACTIONS(439), + [anon_sym_when] = 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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [108] = { - [ts_builtin_sym_end] = ACTIONS(430), - [sym_identifier] = ACTIONS(432), - [sym_decimal_integer_literal] = ACTIONS(432), - [sym_hex_integer_literal] = ACTIONS(432), - [sym_octal_integer_literal] = ACTIONS(432), - [sym_binary_integer_literal] = ACTIONS(430), - [sym_decimal_floating_point_literal] = ACTIONS(430), - [sym_hex_floating_point_literal] = ACTIONS(432), - [sym_true] = ACTIONS(432), - [sym_false] = ACTIONS(432), - [sym_character_literal] = ACTIONS(430), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [sym_null_literal] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_RPAREN] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(432), - [anon_sym_GT_EQ] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(430), - [anon_sym_EQ_EQ] = ACTIONS(430), - [anon_sym_BANG_EQ] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(430), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(430), - [anon_sym_PERCENT] = ACTIONS(430), - [anon_sym_LT_LT] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(430), - [anon_sym_instanceof] = ACTIONS(432), - [anon_sym_final] = ACTIONS(432), - [anon_sym_DASH_GT] = ACTIONS(430), - [anon_sym_COMMA] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(430), - [anon_sym_COLON] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_PLUS_PLUS] = ACTIONS(430), - [anon_sym_DASH_DASH] = ACTIONS(430), - [anon_sym_new] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(430), - [anon_sym_RBRACK] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_class] = ACTIONS(432), - [anon_sym_COLON_COLON] = ACTIONS(430), - [anon_sym_switch] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_case] = ACTIONS(432), - [anon_sym_default] = ACTIONS(432), - [anon_sym_when] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_assert] = ACTIONS(432), - [anon_sym_do] = ACTIONS(432), - [anon_sym_while] = ACTIONS(432), - [anon_sym_break] = ACTIONS(432), - [anon_sym_continue] = ACTIONS(432), - [anon_sym_return] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(432), - [anon_sym_synchronized] = ACTIONS(432), - [anon_sym_throw] = ACTIONS(432), - [anon_sym_try] = ACTIONS(432), - [anon_sym_if] = ACTIONS(432), - [anon_sym_else] = ACTIONS(432), - [anon_sym_for] = ACTIONS(432), - [anon_sym_AT] = ACTIONS(432), - [anon_sym_open] = ACTIONS(432), - [anon_sym_module] = ACTIONS(432), - [anon_sym_static] = ACTIONS(432), - [anon_sym_with] = ACTIONS(432), - [anon_sym_package] = ACTIONS(432), - [anon_sym_import] = ACTIONS(432), - [anon_sym_enum] = ACTIONS(432), - [anon_sym_public] = ACTIONS(432), - [anon_sym_protected] = ACTIONS(432), - [anon_sym_private] = ACTIONS(432), - [anon_sym_abstract] = ACTIONS(432), - [anon_sym_strictfp] = ACTIONS(432), - [anon_sym_native] = ACTIONS(432), - [anon_sym_transient] = ACTIONS(432), - [anon_sym_volatile] = ACTIONS(432), - [anon_sym_sealed] = ACTIONS(432), - [anon_sym_non_DASHsealed] = ACTIONS(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(441), + [sym_identifier] = ACTIONS(443), + [sym_decimal_integer_literal] = ACTIONS(443), + [sym_hex_integer_literal] = ACTIONS(443), + [sym_octal_integer_literal] = ACTIONS(443), + [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), + [anon_sym_DQUOTE] = ACTIONS(443), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(441), + [sym_null_literal] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(443), + [anon_sym_GT] = ACTIONS(443), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_GT_EQ] = ACTIONS(441), + [anon_sym_LT_EQ] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(441), + [anon_sym_BANG_EQ] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(441), + [anon_sym_PIPE_PIPE] = ACTIONS(441), + [anon_sym_PLUS] = ACTIONS(443), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_STAR] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(443), + [anon_sym_PIPE] = ACTIONS(443), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(443), + [anon_sym_GT_GT_GT] = ACTIONS(441), + [anon_sym_instanceof] = ACTIONS(443), + [anon_sym_final] = ACTIONS(443), + [anon_sym_DASH_GT] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(441), + [anon_sym_QMARK] = ACTIONS(441), + [anon_sym_COLON] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_PLUS_PLUS] = ACTIONS(441), + [anon_sym_DASH_DASH] = ACTIONS(441), + [anon_sym_new] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_RBRACK] = ACTIONS(441), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_class] = ACTIONS(443), + [anon_sym_COLON_COLON] = ACTIONS(441), + [anon_sym_switch] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(441), + [anon_sym_case] = ACTIONS(443), + [anon_sym_default] = ACTIONS(443), + [anon_sym_when] = 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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [109] = { - [ts_builtin_sym_end] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), - [sym_decimal_integer_literal] = ACTIONS(436), - [sym_hex_integer_literal] = ACTIONS(436), - [sym_octal_integer_literal] = ACTIONS(436), - [sym_binary_integer_literal] = ACTIONS(434), - [sym_decimal_floating_point_literal] = ACTIONS(434), - [sym_hex_floating_point_literal] = ACTIONS(436), - [sym_true] = ACTIONS(436), - [sym_false] = ACTIONS(436), - [sym_character_literal] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(434), - [sym_null_literal] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(434), - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(436), - [anon_sym_GT_EQ] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(434), - [anon_sym_EQ_EQ] = ACTIONS(434), - [anon_sym_BANG_EQ] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_GT_GT_GT] = ACTIONS(434), - [anon_sym_instanceof] = ACTIONS(436), - [anon_sym_final] = ACTIONS(436), - [anon_sym_DASH_GT] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(434), - [anon_sym_QMARK] = ACTIONS(434), - [anon_sym_COLON] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(434), - [anon_sym_DASH_DASH] = ACTIONS(434), - [anon_sym_new] = ACTIONS(436), - [anon_sym_RBRACK] = ACTIONS(434), - [anon_sym_class] = ACTIONS(436), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(436), - [anon_sym_when] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_assert] = ACTIONS(436), - [anon_sym_do] = ACTIONS(436), - [anon_sym_while] = ACTIONS(436), - [anon_sym_break] = ACTIONS(436), - [anon_sym_continue] = ACTIONS(436), - [anon_sym_return] = ACTIONS(436), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_synchronized] = ACTIONS(436), - [anon_sym_throw] = ACTIONS(436), - [anon_sym_try] = ACTIONS(436), - [anon_sym_if] = ACTIONS(436), - [anon_sym_else] = ACTIONS(436), - [anon_sym_for] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_open] = ACTIONS(436), - [anon_sym_module] = ACTIONS(436), - [anon_sym_static] = ACTIONS(436), - [anon_sym_with] = ACTIONS(436), - [anon_sym_package] = ACTIONS(436), - [anon_sym_import] = ACTIONS(436), - [anon_sym_enum] = ACTIONS(436), - [anon_sym_public] = ACTIONS(436), - [anon_sym_protected] = ACTIONS(436), - [anon_sym_private] = ACTIONS(436), - [anon_sym_abstract] = ACTIONS(436), - [anon_sym_strictfp] = ACTIONS(436), - [anon_sym_native] = ACTIONS(436), - [anon_sym_transient] = ACTIONS(436), - [anon_sym_volatile] = ACTIONS(436), - [anon_sym_sealed] = ACTIONS(436), - [anon_sym_non_DASHsealed] = ACTIONS(434), - [anon_sym_record] = ACTIONS(436), - [anon_sym_ATinterface] = ACTIONS(434), - [anon_sym_interface] = ACTIONS(436), - [anon_sym_byte] = ACTIONS(436), - [anon_sym_short] = ACTIONS(436), - [anon_sym_int] = ACTIONS(436), - [anon_sym_long] = ACTIONS(436), - [anon_sym_char] = ACTIONS(436), - [anon_sym_float] = ACTIONS(436), - [anon_sym_double] = ACTIONS(436), - [sym_boolean_type] = ACTIONS(436), - [sym_void_type] = ACTIONS(436), - [sym_this] = ACTIONS(436), - [sym_super] = ACTIONS(436), + [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(447), + [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), + [anon_sym_DQUOTE] = ACTIONS(447), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [sym_null_literal] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_RPAREN] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(445), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(445), + [anon_sym_PERCENT] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(445), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_GT_GT_GT] = ACTIONS(445), + [anon_sym_instanceof] = ACTIONS(447), + [anon_sym_final] = ACTIONS(447), + [anon_sym_DASH_GT] = ACTIONS(445), + [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_COLON] = ACTIONS(445), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(445), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [anon_sym_new] = ACTIONS(447), + [anon_sym_RBRACK] = ACTIONS(445), + [anon_sym_class] = ACTIONS(447), + [anon_sym_switch] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(445), + [anon_sym_case] = ACTIONS(447), + [anon_sym_default] = ACTIONS(447), + [anon_sym_when] = 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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [110] = { - [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(440), - [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), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(438), - [sym_null_literal] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(438), - [anon_sym_RPAREN] = ACTIONS(438), - [anon_sym_AMP] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(438), - [anon_sym_EQ_EQ] = ACTIONS(438), - [anon_sym_BANG_EQ] = ACTIONS(438), - [anon_sym_AMP_AMP] = ACTIONS(438), - [anon_sym_PIPE_PIPE] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(440), - [anon_sym_CARET] = ACTIONS(438), - [anon_sym_PERCENT] = ACTIONS(438), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_GT_GT_GT] = ACTIONS(438), - [anon_sym_instanceof] = ACTIONS(440), - [anon_sym_final] = ACTIONS(440), - [anon_sym_DASH_GT] = ACTIONS(438), - [anon_sym_COMMA] = ACTIONS(438), - [anon_sym_QMARK] = ACTIONS(438), - [anon_sym_COLON] = ACTIONS(438), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(438), - [anon_sym_PLUS_PLUS] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(438), - [anon_sym_new] = ACTIONS(440), - [anon_sym_RBRACK] = ACTIONS(438), - [anon_sym_class] = ACTIONS(440), - [anon_sym_switch] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_case] = ACTIONS(440), - [anon_sym_default] = ACTIONS(440), - [anon_sym_when] = 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_with] = ACTIONS(440), - [anon_sym_package] = ACTIONS(440), - [anon_sym_import] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(440), - [anon_sym_public] = ACTIONS(440), - [anon_sym_protected] = ACTIONS(440), - [anon_sym_private] = ACTIONS(440), - [anon_sym_abstract] = ACTIONS(440), - [anon_sym_strictfp] = ACTIONS(440), - [anon_sym_native] = ACTIONS(440), - [anon_sym_transient] = ACTIONS(440), - [anon_sym_volatile] = ACTIONS(440), - [anon_sym_sealed] = ACTIONS(440), - [anon_sym_non_DASHsealed] = ACTIONS(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), + [sym_identifier] = ACTIONS(449), + [sym_decimal_integer_literal] = ACTIONS(449), + [sym_hex_integer_literal] = ACTIONS(449), + [sym_octal_integer_literal] = ACTIONS(449), + [sym_binary_integer_literal] = ACTIONS(451), + [sym_decimal_floating_point_literal] = ACTIONS(451), + [sym_hex_floating_point_literal] = ACTIONS(449), + [sym_true] = ACTIONS(449), + [sym_false] = ACTIONS(449), + [sym_character_literal] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(449), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(451), + [anon_sym_RBRACE] = ACTIONS(451), + [sym_null_literal] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_RPAREN] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_GT_EQ] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(451), + [anon_sym_AMP_AMP] = ACTIONS(451), + [anon_sym_PIPE_PIPE] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_GT_GT_GT] = ACTIONS(451), + [anon_sym_instanceof] = ACTIONS(449), + [anon_sym_final] = ACTIONS(449), + [anon_sym_DASH_GT] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(451), + [anon_sym_COLON] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(451), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_new] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_class] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym_switch] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(451), + [anon_sym_default] = ACTIONS(449), + [anon_sym_when] = ACTIONS(449), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_assert] = ACTIONS(449), + [anon_sym_do] = ACTIONS(449), + [anon_sym_while] = ACTIONS(449), + [anon_sym_break] = ACTIONS(449), + [anon_sym_continue] = ACTIONS(449), + [anon_sym_return] = ACTIONS(449), + [anon_sym_yield] = ACTIONS(449), + [anon_sym_synchronized] = ACTIONS(449), + [anon_sym_throw] = ACTIONS(449), + [anon_sym_try] = ACTIONS(449), + [anon_sym_if] = ACTIONS(449), + [anon_sym_for] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_open] = ACTIONS(449), + [anon_sym_module] = ACTIONS(449), + [anon_sym_static] = ACTIONS(449), + [anon_sym_with] = ACTIONS(449), + [anon_sym_package] = ACTIONS(449), + [anon_sym_import] = ACTIONS(449), + [anon_sym_enum] = ACTIONS(449), + [anon_sym_public] = ACTIONS(449), + [anon_sym_protected] = ACTIONS(449), + [anon_sym_private] = ACTIONS(449), + [anon_sym_abstract] = ACTIONS(449), + [anon_sym_strictfp] = ACTIONS(449), + [anon_sym_native] = ACTIONS(449), + [anon_sym_transient] = ACTIONS(449), + [anon_sym_volatile] = ACTIONS(449), + [anon_sym_sealed] = ACTIONS(449), + [anon_sym_non_DASHsealed] = ACTIONS(451), + [anon_sym_record] = ACTIONS(449), + [anon_sym_ATinterface] = ACTIONS(451), + [anon_sym_interface] = ACTIONS(449), + [anon_sym_byte] = ACTIONS(449), + [anon_sym_short] = ACTIONS(449), + [anon_sym_int] = ACTIONS(449), + [anon_sym_long] = ACTIONS(449), + [anon_sym_char] = ACTIONS(449), + [anon_sym_float] = ACTIONS(449), + [anon_sym_double] = ACTIONS(449), + [sym_boolean_type] = ACTIONS(449), + [sym_void_type] = ACTIONS(449), + [sym_this] = ACTIONS(449), + [sym_super] = ACTIONS(449), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [111] = { - [ts_builtin_sym_end] = ACTIONS(442), - [sym_identifier] = ACTIONS(444), - [sym_decimal_integer_literal] = ACTIONS(444), - [sym_hex_integer_literal] = ACTIONS(444), - [sym_octal_integer_literal] = ACTIONS(444), - [sym_binary_integer_literal] = ACTIONS(442), - [sym_decimal_floating_point_literal] = ACTIONS(442), - [sym_hex_floating_point_literal] = ACTIONS(444), - [sym_true] = ACTIONS(444), - [sym_false] = ACTIONS(444), - [sym_character_literal] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(444), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(442), - [sym_null_literal] = ACTIONS(444), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(444), - [anon_sym_GT] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(442), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(444), - [anon_sym_GT_GT_GT] = ACTIONS(442), - [anon_sym_instanceof] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_DASH_GT] = ACTIONS(442), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_QMARK] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(442), - [anon_sym_DASH_DASH] = ACTIONS(442), - [anon_sym_new] = ACTIONS(444), - [anon_sym_RBRACK] = ACTIONS(442), - [anon_sym_class] = ACTIONS(444), - [anon_sym_switch] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(442), - [anon_sym_case] = ACTIONS(444), - [anon_sym_default] = ACTIONS(444), - [anon_sym_when] = ACTIONS(444), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_assert] = ACTIONS(444), - [anon_sym_do] = ACTIONS(444), - [anon_sym_while] = ACTIONS(444), - [anon_sym_break] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(444), - [anon_sym_return] = ACTIONS(444), - [anon_sym_yield] = ACTIONS(444), - [anon_sym_synchronized] = ACTIONS(444), - [anon_sym_throw] = ACTIONS(444), - [anon_sym_try] = ACTIONS(444), - [anon_sym_if] = ACTIONS(444), - [anon_sym_else] = ACTIONS(444), - [anon_sym_for] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(444), - [anon_sym_open] = ACTIONS(444), - [anon_sym_module] = ACTIONS(444), - [anon_sym_static] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_enum] = ACTIONS(444), - [anon_sym_public] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_strictfp] = ACTIONS(444), - [anon_sym_native] = ACTIONS(444), - [anon_sym_transient] = ACTIONS(444), - [anon_sym_volatile] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_non_DASHsealed] = ACTIONS(442), - [anon_sym_record] = ACTIONS(444), - [anon_sym_ATinterface] = ACTIONS(442), - [anon_sym_interface] = ACTIONS(444), - [anon_sym_byte] = ACTIONS(444), - [anon_sym_short] = ACTIONS(444), - [anon_sym_int] = ACTIONS(444), - [anon_sym_long] = ACTIONS(444), - [anon_sym_char] = ACTIONS(444), - [anon_sym_float] = ACTIONS(444), - [anon_sym_double] = ACTIONS(444), - [sym_boolean_type] = ACTIONS(444), - [sym_void_type] = ACTIONS(444), - [sym_this] = ACTIONS(444), - [sym_super] = ACTIONS(444), + [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(455), + [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), + [anon_sym_DQUOTE] = ACTIONS(455), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(453), + [sym_null_literal] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(453), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(453), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(453), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_GT_GT_GT] = ACTIONS(453), + [anon_sym_instanceof] = ACTIONS(455), + [anon_sym_final] = ACTIONS(455), + [anon_sym_DASH_GT] = ACTIONS(453), + [anon_sym_COMMA] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_COLON] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_TILDE] = ACTIONS(453), + [anon_sym_PLUS_PLUS] = ACTIONS(453), + [anon_sym_DASH_DASH] = ACTIONS(453), + [anon_sym_new] = ACTIONS(455), + [anon_sym_RBRACK] = ACTIONS(453), + [anon_sym_class] = ACTIONS(455), + [anon_sym_switch] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(453), + [anon_sym_case] = ACTIONS(455), + [anon_sym_default] = ACTIONS(455), + [anon_sym_when] = 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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [112] = { - [ts_builtin_sym_end] = ACTIONS(446), - [sym_identifier] = ACTIONS(448), - [sym_decimal_integer_literal] = ACTIONS(448), - [sym_hex_integer_literal] = ACTIONS(448), - [sym_octal_integer_literal] = ACTIONS(448), - [sym_binary_integer_literal] = ACTIONS(446), - [sym_decimal_floating_point_literal] = ACTIONS(446), - [sym_hex_floating_point_literal] = ACTIONS(448), - [sym_true] = ACTIONS(448), - [sym_false] = ACTIONS(448), - [sym_character_literal] = ACTIONS(446), - [anon_sym_DQUOTE] = ACTIONS(448), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [sym_null_literal] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_RPAREN] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_GT_EQ] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(446), - [anon_sym_EQ_EQ] = ACTIONS(446), - [anon_sym_BANG_EQ] = ACTIONS(446), - [anon_sym_AMP_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(446), - [anon_sym_PERCENT] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(448), - [anon_sym_GT_GT_GT] = ACTIONS(446), - [anon_sym_instanceof] = ACTIONS(448), - [anon_sym_final] = ACTIONS(448), - [anon_sym_DASH_GT] = ACTIONS(446), - [anon_sym_COMMA] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(446), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [anon_sym_new] = ACTIONS(448), - [anon_sym_RBRACK] = ACTIONS(446), - [anon_sym_class] = ACTIONS(448), - [anon_sym_switch] = ACTIONS(448), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_case] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_when] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_assert] = ACTIONS(448), - [anon_sym_do] = ACTIONS(448), - [anon_sym_while] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), - [anon_sym_return] = ACTIONS(448), - [anon_sym_yield] = ACTIONS(448), - [anon_sym_synchronized] = ACTIONS(448), - [anon_sym_throw] = ACTIONS(448), - [anon_sym_try] = ACTIONS(448), - [anon_sym_if] = ACTIONS(448), - [anon_sym_else] = ACTIONS(448), - [anon_sym_for] = ACTIONS(448), - [anon_sym_AT] = ACTIONS(448), - [anon_sym_open] = ACTIONS(448), - [anon_sym_module] = ACTIONS(448), - [anon_sym_static] = ACTIONS(448), - [anon_sym_with] = ACTIONS(448), - [anon_sym_package] = ACTIONS(448), - [anon_sym_import] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_public] = ACTIONS(448), - [anon_sym_protected] = ACTIONS(448), - [anon_sym_private] = ACTIONS(448), - [anon_sym_abstract] = ACTIONS(448), - [anon_sym_strictfp] = ACTIONS(448), - [anon_sym_native] = ACTIONS(448), - [anon_sym_transient] = ACTIONS(448), - [anon_sym_volatile] = ACTIONS(448), - [anon_sym_sealed] = ACTIONS(448), - [anon_sym_non_DASHsealed] = ACTIONS(446), - [anon_sym_record] = ACTIONS(448), - [anon_sym_ATinterface] = ACTIONS(446), - [anon_sym_interface] = ACTIONS(448), - [anon_sym_byte] = ACTIONS(448), - [anon_sym_short] = ACTIONS(448), - [anon_sym_int] = ACTIONS(448), - [anon_sym_long] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [anon_sym_float] = ACTIONS(448), - [anon_sym_double] = ACTIONS(448), - [sym_boolean_type] = ACTIONS(448), - [sym_void_type] = ACTIONS(448), - [sym_this] = ACTIONS(448), - [sym_super] = ACTIONS(448), + [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(459), + [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), + [anon_sym_DQUOTE] = ACTIONS(459), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(457), + [anon_sym_RBRACE] = ACTIONS(457), + [sym_null_literal] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(457), + [anon_sym_RPAREN] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT_EQ] = ACTIONS(457), + [anon_sym_LT_EQ] = ACTIONS(457), + [anon_sym_EQ_EQ] = ACTIONS(457), + [anon_sym_BANG_EQ] = ACTIONS(457), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [anon_sym_PLUS] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(457), + [anon_sym_PERCENT] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(457), + [anon_sym_GT_GT] = ACTIONS(459), + [anon_sym_GT_GT_GT] = ACTIONS(457), + [anon_sym_instanceof] = ACTIONS(459), + [anon_sym_final] = ACTIONS(459), + [anon_sym_DASH_GT] = ACTIONS(457), + [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(457), + [anon_sym_COLON] = ACTIONS(457), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(457), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_new] = ACTIONS(459), + [anon_sym_RBRACK] = ACTIONS(457), + [anon_sym_class] = ACTIONS(459), + [anon_sym_switch] = ACTIONS(459), + [anon_sym_LBRACE] = ACTIONS(457), + [anon_sym_case] = ACTIONS(459), + [anon_sym_default] = ACTIONS(459), + [anon_sym_when] = 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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [113] = { - [sym_identifier] = ACTIONS(450), - [sym_decimal_integer_literal] = ACTIONS(450), - [sym_hex_integer_literal] = ACTIONS(450), - [sym_octal_integer_literal] = ACTIONS(450), - [sym_binary_integer_literal] = ACTIONS(452), - [sym_decimal_floating_point_literal] = ACTIONS(452), - [sym_hex_floating_point_literal] = ACTIONS(450), - [sym_true] = ACTIONS(450), - [sym_false] = ACTIONS(450), - [sym_character_literal] = ACTIONS(452), - [anon_sym_DQUOTE] = ACTIONS(450), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [sym_null_literal] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(452), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(450), - [anon_sym_GT] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(452), - [anon_sym_EQ_EQ] = ACTIONS(452), - [anon_sym_BANG_EQ] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_GT_GT_GT] = ACTIONS(452), - [anon_sym_instanceof] = ACTIONS(450), - [anon_sym_final] = ACTIONS(450), - [anon_sym_DASH_GT] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(452), - [anon_sym_QMARK] = ACTIONS(452), - [anon_sym_COLON] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_TILDE] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(452), - [anon_sym_DASH_DASH] = ACTIONS(452), - [anon_sym_new] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(452), - [anon_sym_RBRACK] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_class] = ACTIONS(450), - [anon_sym_COLON_COLON] = ACTIONS(452), - [anon_sym_switch] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(452), - [anon_sym_default] = ACTIONS(450), - [anon_sym_when] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_assert] = ACTIONS(450), - [anon_sym_do] = ACTIONS(450), - [anon_sym_while] = ACTIONS(450), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_return] = ACTIONS(450), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_synchronized] = ACTIONS(450), - [anon_sym_throw] = ACTIONS(450), - [anon_sym_try] = ACTIONS(450), - [anon_sym_if] = ACTIONS(450), - [anon_sym_for] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(450), - [anon_sym_open] = ACTIONS(450), - [anon_sym_module] = ACTIONS(450), - [anon_sym_static] = ACTIONS(450), - [anon_sym_with] = ACTIONS(450), - [anon_sym_package] = ACTIONS(450), - [anon_sym_import] = ACTIONS(450), - [anon_sym_enum] = ACTIONS(450), - [anon_sym_public] = ACTIONS(450), - [anon_sym_protected] = ACTIONS(450), - [anon_sym_private] = ACTIONS(450), - [anon_sym_abstract] = ACTIONS(450), - [anon_sym_strictfp] = ACTIONS(450), - [anon_sym_native] = ACTIONS(450), - [anon_sym_transient] = ACTIONS(450), - [anon_sym_volatile] = ACTIONS(450), - [anon_sym_sealed] = ACTIONS(450), - [anon_sym_non_DASHsealed] = ACTIONS(452), - [anon_sym_record] = ACTIONS(450), - [anon_sym_ATinterface] = ACTIONS(452), - [anon_sym_interface] = ACTIONS(450), - [anon_sym_byte] = ACTIONS(450), - [anon_sym_short] = ACTIONS(450), - [anon_sym_int] = ACTIONS(450), - [anon_sym_long] = ACTIONS(450), - [anon_sym_char] = ACTIONS(450), - [anon_sym_float] = ACTIONS(450), - [anon_sym_double] = ACTIONS(450), - [sym_boolean_type] = ACTIONS(450), - [sym_void_type] = ACTIONS(450), - [sym_this] = ACTIONS(450), - [sym_super] = ACTIONS(450), + [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(463), + [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), + [anon_sym_DQUOTE] = ACTIONS(463), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [sym_null_literal] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_LT_LT] = ACTIONS(461), + [anon_sym_GT_GT] = ACTIONS(463), + [anon_sym_GT_GT_GT] = ACTIONS(461), + [anon_sym_instanceof] = ACTIONS(463), + [anon_sym_final] = ACTIONS(463), + [anon_sym_DASH_GT] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_PLUS_PLUS] = ACTIONS(461), + [anon_sym_DASH_DASH] = ACTIONS(461), + [anon_sym_new] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_class] = ACTIONS(463), + [anon_sym_switch] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_case] = ACTIONS(463), + [anon_sym_default] = ACTIONS(463), + [anon_sym_when] = 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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [114] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [sym_decimal_integer_literal] = ACTIONS(456), - [sym_hex_integer_literal] = ACTIONS(456), - [sym_octal_integer_literal] = ACTIONS(456), - [sym_binary_integer_literal] = ACTIONS(454), - [sym_decimal_floating_point_literal] = ACTIONS(454), - [sym_hex_floating_point_literal] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_character_literal] = ACTIONS(454), - [anon_sym_DQUOTE] = ACTIONS(456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [sym_null_literal] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_PERCENT] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(454), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_GT_GT_GT] = ACTIONS(454), - [anon_sym_instanceof] = ACTIONS(456), - [anon_sym_final] = ACTIONS(456), - [anon_sym_DASH_GT] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_PLUS_PLUS] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(454), - [anon_sym_new] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(454), - [anon_sym_class] = ACTIONS(456), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_case] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_when] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_assert] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_synchronized] = ACTIONS(456), - [anon_sym_throw] = ACTIONS(456), - [anon_sym_try] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(456), - [anon_sym_open] = ACTIONS(456), - [anon_sym_module] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_package] = ACTIONS(456), - [anon_sym_import] = ACTIONS(456), - [anon_sym_enum] = ACTIONS(456), - [anon_sym_public] = ACTIONS(456), - [anon_sym_protected] = ACTIONS(456), - [anon_sym_private] = ACTIONS(456), - [anon_sym_abstract] = ACTIONS(456), - [anon_sym_strictfp] = ACTIONS(456), - [anon_sym_native] = ACTIONS(456), - [anon_sym_transient] = ACTIONS(456), - [anon_sym_volatile] = ACTIONS(456), - [anon_sym_sealed] = ACTIONS(456), - [anon_sym_non_DASHsealed] = ACTIONS(454), - [anon_sym_record] = ACTIONS(456), - [anon_sym_ATinterface] = ACTIONS(454), - [anon_sym_interface] = ACTIONS(456), - [anon_sym_byte] = ACTIONS(456), - [anon_sym_short] = ACTIONS(456), - [anon_sym_int] = ACTIONS(456), - [anon_sym_long] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_float] = ACTIONS(456), - [anon_sym_double] = ACTIONS(456), - [sym_boolean_type] = ACTIONS(456), - [sym_void_type] = ACTIONS(456), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), + [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(467), + [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), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [sym_null_literal] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [anon_sym_GT] = ACTIONS(467), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_EQ_EQ] = ACTIONS(465), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(467), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(467), + [anon_sym_PIPE] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_LT_LT] = ACTIONS(465), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_GT_GT_GT] = ACTIONS(465), + [anon_sym_instanceof] = ACTIONS(467), + [anon_sym_final] = ACTIONS(467), + [anon_sym_DASH_GT] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_BANG] = ACTIONS(467), + [anon_sym_TILDE] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(465), + [anon_sym_DASH_DASH] = ACTIONS(465), + [anon_sym_new] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_class] = ACTIONS(467), + [anon_sym_switch] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_default] = ACTIONS(467), + [anon_sym_when] = 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_with] = 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_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), }, [115] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(719), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(827), - [sym__type] = STATE(1015), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_formal_parameter] = STATE(1109), - [sym_receiver_parameter] = STATE(1200), - [sym_spread_parameter] = STATE(1109), - [sym__reserved_identifier] = STATE(441), - [aux_sym_array_creation_expression_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(458), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(757), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(833), + [sym__type] = STATE(1037), + [sym__unannotated_type] = STATE(701), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_formal_parameter] = STATE(1076), + [sym_receiver_parameter] = STATE(1298), + [sym_spread_parameter] = STATE(1076), + [sym__reserved_identifier] = STATE(444), + [aux_sym_array_creation_expression_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(469), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25102,34 +24932,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(473), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_default] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -25146,52 +24976,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [116] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(719), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(827), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_formal_parameter] = STATE(1109), - [sym_receiver_parameter] = STATE(1200), - [sym_spread_parameter] = STATE(1109), - [sym__reserved_identifier] = STATE(441), - [aux_sym_array_creation_expression_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(470), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(757), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(833), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(701), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_formal_parameter] = STATE(1076), + [sym_receiver_parameter] = STATE(1298), + [sym_spread_parameter] = STATE(1076), + [sym__reserved_identifier] = STATE(444), + [aux_sym_array_creation_expression_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(481), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25205,34 +25035,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(473), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_default] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -25249,52 +25079,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [117] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(719), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(827), - [sym__type] = STATE(1056), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_formal_parameter] = STATE(1109), - [sym_receiver_parameter] = STATE(1200), - [sym_spread_parameter] = STATE(1109), - [sym__reserved_identifier] = STATE(441), - [aux_sym_array_creation_expression_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(458), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(757), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(833), + [sym__type] = STATE(1013), + [sym__unannotated_type] = STATE(701), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_formal_parameter] = STATE(1076), + [sym_receiver_parameter] = STATE(1298), + [sym_spread_parameter] = STATE(1076), + [sym__reserved_identifier] = STATE(444), + [aux_sym_array_creation_expression_repeat1] = STATE(792), + [aux_sym_modifiers_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(469), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25308,34 +25138,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(471), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(473), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_default] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -25352,49 +25182,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [118] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(652), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(829), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(764), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(161), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(660), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(831), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(776), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(190), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(626), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -25411,32 +25241,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(473), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_default] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(483), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -25453,49 +25283,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [119] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(650), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(836), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(770), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(184), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(694), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(842), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(778), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(186), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(626), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -25512,32 +25342,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(473), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_default] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -25554,49 +25384,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [120] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(664), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(833), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(771), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(188), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(693), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(845), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(780), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym_local_variable_declaration] = STATE(182), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(626), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -25613,32 +25443,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(473), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_default] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -25655,243 +25485,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [121] = { - [sym_identifier] = ACTIONS(478), - [sym_decimal_integer_literal] = ACTIONS(478), - [sym_hex_integer_literal] = ACTIONS(478), - [sym_octal_integer_literal] = ACTIONS(478), - [sym_binary_integer_literal] = ACTIONS(480), - [sym_decimal_floating_point_literal] = ACTIONS(480), - [sym_hex_floating_point_literal] = ACTIONS(478), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_character_literal] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [sym_null_literal] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(484), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_GT_GT_GT] = ACTIONS(484), - [anon_sym_instanceof] = ACTIONS(482), - [anon_sym_final] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym_new] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_case] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_assert] = ACTIONS(478), - [anon_sym_do] = ACTIONS(478), - [anon_sym_while] = ACTIONS(478), - [anon_sym_break] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_return] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(478), - [anon_sym_synchronized] = ACTIONS(478), - [anon_sym_throw] = ACTIONS(478), - [anon_sym_try] = ACTIONS(478), - [anon_sym_if] = ACTIONS(478), - [anon_sym_else] = ACTIONS(478), - [anon_sym_for] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_open] = ACTIONS(478), - [anon_sym_module] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_with] = ACTIONS(478), - [anon_sym_package] = ACTIONS(478), - [anon_sym_import] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_public] = ACTIONS(478), - [anon_sym_protected] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(478), - [anon_sym_strictfp] = ACTIONS(478), - [anon_sym_native] = ACTIONS(478), - [anon_sym_transient] = ACTIONS(478), - [anon_sym_volatile] = ACTIONS(478), - [anon_sym_sealed] = ACTIONS(478), - [anon_sym_non_DASHsealed] = ACTIONS(480), - [anon_sym_record] = ACTIONS(478), - [anon_sym_ATinterface] = ACTIONS(480), - [anon_sym_interface] = ACTIONS(478), - [anon_sym_byte] = ACTIONS(478), - [anon_sym_short] = ACTIONS(478), - [anon_sym_int] = ACTIONS(478), - [anon_sym_long] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_float] = ACTIONS(478), - [anon_sym_double] = ACTIONS(478), - [sym_boolean_type] = ACTIONS(478), - [sym_void_type] = ACTIONS(478), - [sym_this] = ACTIONS(478), - [sym_super] = ACTIONS(478), + [sym_identifier] = ACTIONS(489), + [sym_decimal_integer_literal] = ACTIONS(489), + [sym_hex_integer_literal] = ACTIONS(489), + [sym_octal_integer_literal] = ACTIONS(489), + [sym_binary_integer_literal] = ACTIONS(491), + [sym_decimal_floating_point_literal] = ACTIONS(491), + [sym_hex_floating_point_literal] = ACTIONS(489), + [sym_true] = ACTIONS(489), + [sym_false] = ACTIONS(489), + [sym_character_literal] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(491), + [sym_null_literal] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(495), + [anon_sym_LT_EQ] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_PERCENT] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(495), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_GT_GT_GT] = ACTIONS(495), + [anon_sym_instanceof] = ACTIONS(493), + [anon_sym_final] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_new] = ACTIONS(489), + [anon_sym_class] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_case] = ACTIONS(489), + [anon_sym_default] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(500), + [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_with] = 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_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(491), + [anon_sym_record] = ACTIONS(489), + [anon_sym_ATinterface] = ACTIONS(491), + [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), }, [122] = { - [ts_builtin_sym_end] = ACTIONS(480), - [sym_identifier] = ACTIONS(478), - [sym_decimal_integer_literal] = ACTIONS(478), - [sym_hex_integer_literal] = ACTIONS(478), - [sym_octal_integer_literal] = ACTIONS(478), - [sym_binary_integer_literal] = ACTIONS(480), - [sym_decimal_floating_point_literal] = ACTIONS(480), - [sym_hex_floating_point_literal] = ACTIONS(478), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_character_literal] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(480), - [sym_null_literal] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(484), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_GT_GT_GT] = ACTIONS(484), - [anon_sym_instanceof] = ACTIONS(482), - [anon_sym_final] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym_new] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_default] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_assert] = ACTIONS(478), - [anon_sym_do] = ACTIONS(478), - [anon_sym_while] = ACTIONS(478), - [anon_sym_break] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_return] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(478), - [anon_sym_synchronized] = ACTIONS(478), - [anon_sym_throw] = ACTIONS(478), - [anon_sym_try] = ACTIONS(478), - [anon_sym_if] = ACTIONS(478), - [anon_sym_else] = ACTIONS(478), - [anon_sym_for] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_open] = ACTIONS(478), - [anon_sym_module] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_with] = ACTIONS(478), - [anon_sym_package] = ACTIONS(478), - [anon_sym_import] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_public] = ACTIONS(478), - [anon_sym_protected] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(478), - [anon_sym_strictfp] = ACTIONS(478), - [anon_sym_native] = ACTIONS(478), - [anon_sym_transient] = ACTIONS(478), - [anon_sym_volatile] = ACTIONS(478), - [anon_sym_sealed] = ACTIONS(478), - [anon_sym_non_DASHsealed] = ACTIONS(480), - [anon_sym_record] = ACTIONS(478), - [anon_sym_ATinterface] = ACTIONS(480), - [anon_sym_interface] = ACTIONS(478), - [anon_sym_byte] = ACTIONS(478), - [anon_sym_short] = ACTIONS(478), - [anon_sym_int] = ACTIONS(478), - [anon_sym_long] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_float] = ACTIONS(478), - [anon_sym_double] = ACTIONS(478), - [sym_boolean_type] = ACTIONS(478), - [sym_void_type] = ACTIONS(478), - [sym_this] = ACTIONS(478), - [sym_super] = ACTIONS(478), + [ts_builtin_sym_end] = ACTIONS(491), + [sym_identifier] = ACTIONS(489), + [sym_decimal_integer_literal] = ACTIONS(489), + [sym_hex_integer_literal] = ACTIONS(489), + [sym_octal_integer_literal] = ACTIONS(489), + [sym_binary_integer_literal] = ACTIONS(491), + [sym_decimal_floating_point_literal] = ACTIONS(491), + [sym_hex_floating_point_literal] = ACTIONS(489), + [sym_true] = ACTIONS(489), + [sym_false] = ACTIONS(489), + [sym_character_literal] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(491), + [sym_null_literal] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_GT] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(495), + [anon_sym_LT_EQ] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_BANG_EQ] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(495), + [anon_sym_PIPE_PIPE] = ACTIONS(495), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_SLASH] = ACTIONS(493), + [anon_sym_PIPE] = ACTIONS(493), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_PERCENT] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(495), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_GT_GT_GT] = ACTIONS(495), + [anon_sym_instanceof] = ACTIONS(493), + [anon_sym_final] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(491), + [anon_sym_PLUS_PLUS] = ACTIONS(500), + [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_new] = ACTIONS(489), + [anon_sym_class] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_default] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(500), + [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_with] = 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_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(491), + [anon_sym_record] = ACTIONS(489), + [anon_sym_ATinterface] = ACTIONS(491), + [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), }, [123] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym_element_value_pair] = STATE(1114), - [sym__element_value] = STATE(1315), - [sym_element_value_array_initializer] = STATE(1315), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(492), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym_element_value_pair] = STATE(1123), + [sym__element_value] = STATE(1349), + [sym_element_value_array_initializer] = STATE(1349), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(462), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(503), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25905,7 +25735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(505), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -25914,9 +25744,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -25937,49 +25767,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [124] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_block] = STATE(1092), - [sym_expression_statement] = STATE(1092), - [sym_throw_statement] = STATE(1092), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym__element_value] = STATE(1124), + [sym_element_value_array_initializer] = STATE(1124), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -25992,20 +25821,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(509), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(511), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_throw] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26026,50 +25856,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [125] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym_element_value_pair] = STATE(1101), - [sym__element_value] = STATE(1343), - [sym_element_value_array_initializer] = STATE(1343), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(492), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym_element_value_pair] = STATE(1092), + [sym__element_value] = STATE(1339), + [sym_element_value_array_initializer] = STATE(1339), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(462), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(503), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26083,7 +25913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(498), + [anon_sym_RPAREN] = ACTIONS(513), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26092,9 +25922,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26115,50 +25945,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [126] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym_element_value_pair] = STATE(1138), - [sym__element_value] = STATE(1300), - [sym_element_value_array_initializer] = STATE(1300), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(492), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym_element_value_pair] = STATE(1107), + [sym__element_value] = STATE(1333), + [sym_element_value_array_initializer] = STATE(1333), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(462), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(503), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26172,7 +26002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(515), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26181,9 +26011,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26204,48 +26034,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [127] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1089), - [sym_element_value_array_initializer] = STATE(1089), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(752), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym_block] = STATE(1167), + [sym_expression_statement] = STATE(1167), + [sym_throw_statement] = STATE(1167), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -26258,21 +26089,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(502), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(504), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26293,48 +26123,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [128] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1209), - [sym_element_value_array_initializer] = STATE(1209), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(669), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym_array_initializer] = STATE(1148), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -26347,20 +26176,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(517), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(519), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26381,47 +26211,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [129] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(662), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1107), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym__element_value] = STATE(1297), + [sym_element_value_array_initializer] = STATE(1297), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -26434,21 +26265,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(523), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(510), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26469,49 +26299,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [130] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(658), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_record_pattern] = STATE(1154), - [sym_record_pattern_component] = STATE(1154), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(814), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(662), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym_record_pattern] = STATE(1094), + [sym_record_pattern_component] = STATE(1094), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(823), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), [sym_generic_type] = STATE(858), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), [sym__reserved_identifier] = STATE(445), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(514), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(525), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26525,7 +26355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(527), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26534,9 +26364,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [sym_underscore_pattern] = ACTIONS(518), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [sym_underscore_pattern] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26557,49 +26387,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [131] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(658), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_record_pattern] = STATE(1154), - [sym_record_pattern_component] = STATE(1154), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(814), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(858), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(445), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(514), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym__element_value] = STATE(1297), + [sym_element_value_array_initializer] = STATE(1297), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26611,9 +26441,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(531), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26622,9 +26452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [sym_underscore_pattern] = ACTIONS(518), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26645,49 +26475,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [132] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1209), - [sym_element_value_array_initializer] = STATE(1209), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(662), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym_record_pattern] = STATE(1094), + [sym_record_pattern_component] = STATE(1094), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(823), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(858), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(445), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(525), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26699,9 +26529,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(522), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(533), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26710,9 +26540,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [sym_underscore_pattern] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26733,48 +26563,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [133] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(705), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1296), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [sym_identifier] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_RPAREN] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(423), + [anon_sym_final] = ACTIONS(423), + [anon_sym_DASH_GT] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_PLUS_PLUS] = ACTIONS(425), + [anon_sym_DASH_DASH] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_RBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_class] = ACTIONS(423), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_default] = ACTIONS(423), + [anon_sym_when] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(423), + [anon_sym_open] = ACTIONS(423), + [anon_sym_module] = ACTIONS(423), + [anon_sym_static] = ACTIONS(423), + [anon_sym_to] = ACTIONS(423), + [anon_sym_with] = ACTIONS(423), + [anon_sym_package] = 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_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(425), + [anon_sym_record] = ACTIONS(423), + [anon_sym_ATinterface] = ACTIONS(425), + [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_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [134] = { + [sym_identifier] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_RPAREN] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(423), + [anon_sym_final] = ACTIONS(423), + [anon_sym_DASH_GT] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_PLUS_PLUS] = ACTIONS(425), + [anon_sym_DASH_DASH] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_RBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_class] = ACTIONS(423), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_LBRACE] = ACTIONS(425), + [anon_sym_default] = ACTIONS(423), + [anon_sym_when] = ACTIONS(423), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(423), + [anon_sym_AT] = ACTIONS(423), + [anon_sym_open] = ACTIONS(423), + [anon_sym_module] = ACTIONS(423), + [anon_sym_static] = ACTIONS(423), + [anon_sym_to] = ACTIONS(423), + [anon_sym_with] = ACTIONS(423), + [anon_sym_package] = 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_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(425), + [anon_sym_record] = ACTIONS(423), + [anon_sym_ATinterface] = ACTIONS(425), + [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_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [135] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(634), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym_pattern] = STATE(1093), + [sym_type_pattern] = STATE(1073), + [sym_record_pattern] = STATE(1073), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(822), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(858), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(440), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(535), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26786,7 +26792,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(524), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -26797,9 +26802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26819,51 +26823,50 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(626), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_pattern] = STATE(1030), - [sym_type_pattern] = STATE(1132), - [sym_record_pattern] = STATE(1132), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(819), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(858), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(438), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(526), + [136] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(711), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym__element_value] = STATE(1242), + [sym_element_value_array_initializer] = STATE(1242), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26876,17 +26879,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26906,48 +26910,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(705), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1296), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [137] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym__element_value] = STATE(1242), + [sym_element_value_array_initializer] = STATE(1242), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -26960,7 +26965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(536), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -26971,9 +26975,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -26993,136 +26997,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_identifier] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(422), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_final] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_COMMA] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_COLON] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_RBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_class] = ACTIONS(420), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_default] = ACTIONS(420), - [anon_sym_when] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(420), - [anon_sym_AT] = ACTIONS(420), - [anon_sym_open] = ACTIONS(420), - [anon_sym_module] = ACTIONS(420), - [anon_sym_static] = ACTIONS(420), - [anon_sym_to] = ACTIONS(420), - [anon_sym_with] = ACTIONS(420), - [anon_sym_package] = ACTIONS(420), - [anon_sym_enum] = ACTIONS(420), - [anon_sym_public] = ACTIONS(420), - [anon_sym_protected] = ACTIONS(420), - [anon_sym_private] = ACTIONS(420), - [anon_sym_abstract] = ACTIONS(420), - [anon_sym_strictfp] = ACTIONS(420), - [anon_sym_native] = ACTIONS(420), - [anon_sym_transient] = ACTIONS(420), - [anon_sym_volatile] = ACTIONS(420), - [anon_sym_sealed] = ACTIONS(420), - [anon_sym_non_DASHsealed] = ACTIONS(422), - [anon_sym_record] = ACTIONS(420), - [anon_sym_ATinterface] = ACTIONS(422), - [anon_sym_interface] = ACTIONS(420), - [anon_sym_byte] = ACTIONS(420), - [anon_sym_short] = ACTIONS(420), - [anon_sym_int] = ACTIONS(420), - [anon_sym_long] = ACTIONS(420), - [anon_sym_char] = ACTIONS(420), - [anon_sym_float] = ACTIONS(420), - [anon_sym_double] = ACTIONS(420), - [sym_boolean_type] = ACTIONS(420), - [sym_void_type] = ACTIONS(420), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [137] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1209), - [sym_element_value_array_initializer] = STATE(1209), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [138] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(706), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym_array_initializer] = STATE(1192), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27135,6 +27051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(537), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -27145,9 +27062,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27167,49 +27084,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1330), - [sym_element_value_array_initializer] = STATE(1330), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [139] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym__element_value] = STATE(1297), + [sym_element_value_array_initializer] = STATE(1297), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27232,9 +27149,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27254,49 +27171,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(691), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1235), - [sym_element_value_array_initializer] = STATE(1235), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [140] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(848), + [sym_marker_annotation] = STATE(848), + [sym_annotation] = STATE(848), + [sym__element_value] = STATE(1341), + [sym_element_value_array_initializer] = STATE(1341), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27319,9 +27236,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27341,49 +27258,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1235), - [sym_element_value_array_initializer] = STATE(1235), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [141] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(706), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym_array_initializer] = STATE(1192), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27396,6 +27312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(539), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -27406,9 +27323,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27428,51 +27345,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(630), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_pattern] = STATE(1102), - [sym_type_pattern] = STATE(1132), - [sym_record_pattern] = STATE(1132), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(819), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), + [142] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(629), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym_pattern] = STATE(1022), + [sym_type_pattern] = STATE(1073), + [sym_record_pattern] = STATE(1073), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(822), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), [sym_generic_type] = STATE(858), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(440), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(538), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(442), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(541), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -27485,17 +27402,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27515,48 +27432,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(653), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1134), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [143] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym_block] = STATE(592), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27579,9 +27496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27601,49 +27518,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(635), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_block] = STATE(609), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [144] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(639), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym_block] = STATE(592), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -27656,18 +27573,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27687,48 +27604,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(618), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_block] = STATE(609), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [145] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(706), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym_array_initializer] = STATE(1192), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27751,9 +27668,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27773,48 +27690,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(705), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1296), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [146] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(668), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym_array_initializer] = STATE(1074), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27837,9 +27754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27859,47 +27776,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(682), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [147] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(676), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27914,7 +27831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(553), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -27923,8 +27840,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -27944,47 +27861,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(669), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [148] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(739), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -27999,7 +27916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(544), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28007,94 +27923,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(555), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [148] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(670), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28115,46 +27947,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [149] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(727), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(729), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28177,9 +28009,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28200,46 +28032,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [150] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), [sym_expression] = STATE(671), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28254,7 +28086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(559), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28263,8 +28095,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28285,46 +28117,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [151] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(658), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(754), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28339,7 +28171,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(552), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28348,8 +28179,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28370,46 +28202,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [152] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(655), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(659), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28424,7 +28256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(554), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28433,8 +28265,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28455,46 +28287,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [153] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(657), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(665), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28509,7 +28341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28518,8 +28350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28540,46 +28372,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [154] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(660), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(667), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28594,7 +28426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28603,8 +28435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28625,46 +28457,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [155] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(722), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(662), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28679,6 +28511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(569), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28686,10 +28519,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(560), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28710,46 +28542,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [156] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(722), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(691), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28764,6 +28596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(571), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28771,10 +28604,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(562), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28795,46 +28627,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [157] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(714), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(692), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -28849,6 +28681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(573), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -28856,10 +28689,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(564), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -28880,216 +28712,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [158] = { - [sym_catch_clause] = STATE(214), - [sym_finally_clause] = STATE(356), - [aux_sym_try_statement_repeat1] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_decimal_integer_literal] = ACTIONS(568), - [sym_hex_integer_literal] = ACTIONS(568), - [sym_octal_integer_literal] = ACTIONS(568), - [sym_binary_integer_literal] = ACTIONS(566), - [sym_decimal_floating_point_literal] = ACTIONS(566), - [sym_hex_floating_point_literal] = ACTIONS(568), - [sym_true] = ACTIONS(568), - [sym_false] = ACTIONS(568), - [sym_character_literal] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [sym_null_literal] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_final] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(566), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_DASH_DASH] = ACTIONS(566), - [anon_sym_new] = ACTIONS(568), - [anon_sym_class] = ACTIONS(568), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_assert] = ACTIONS(568), - [anon_sym_do] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_synchronized] = ACTIONS(568), - [anon_sym_throw] = ACTIONS(568), - [anon_sym_try] = ACTIONS(568), - [anon_sym_catch] = ACTIONS(570), - [anon_sym_finally] = ACTIONS(572), - [anon_sym_if] = ACTIONS(568), - [anon_sym_else] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(568), - [anon_sym_open] = ACTIONS(568), - [anon_sym_module] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_with] = ACTIONS(568), - [anon_sym_package] = ACTIONS(568), - [anon_sym_import] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_public] = ACTIONS(568), - [anon_sym_protected] = ACTIONS(568), - [anon_sym_private] = ACTIONS(568), - [anon_sym_abstract] = ACTIONS(568), - [anon_sym_strictfp] = ACTIONS(568), - [anon_sym_native] = ACTIONS(568), - [anon_sym_transient] = ACTIONS(568), - [anon_sym_volatile] = ACTIONS(568), - [anon_sym_sealed] = ACTIONS(568), - [anon_sym_non_DASHsealed] = ACTIONS(566), - [anon_sym_record] = ACTIONS(568), - [anon_sym_ATinterface] = ACTIONS(566), - [anon_sym_interface] = ACTIONS(568), - [anon_sym_byte] = ACTIONS(568), - [anon_sym_short] = ACTIONS(568), - [anon_sym_int] = ACTIONS(568), - [anon_sym_long] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_float] = ACTIONS(568), - [anon_sym_double] = ACTIONS(568), - [sym_boolean_type] = ACTIONS(568), - [sym_void_type] = ACTIONS(568), - [sym_this] = ACTIONS(568), - [sym_super] = ACTIONS(568), + [sym_catch_clause] = STATE(197), + [sym_finally_clause] = STATE(387), + [aux_sym_try_statement_repeat1] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(575), + [sym_identifier] = ACTIONS(577), + [sym_decimal_integer_literal] = ACTIONS(577), + [sym_hex_integer_literal] = ACTIONS(577), + [sym_octal_integer_literal] = ACTIONS(577), + [sym_binary_integer_literal] = ACTIONS(575), + [sym_decimal_floating_point_literal] = ACTIONS(575), + [sym_hex_floating_point_literal] = ACTIONS(577), + [sym_true] = ACTIONS(577), + [sym_false] = ACTIONS(577), + [sym_character_literal] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(575), + [sym_null_literal] = ACTIONS(577), + [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_final] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_new] = ACTIONS(577), + [anon_sym_class] = ACTIONS(577), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_case] = ACTIONS(577), + [anon_sym_default] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(575), + [anon_sym_assert] = ACTIONS(577), + [anon_sym_do] = ACTIONS(577), + [anon_sym_while] = ACTIONS(577), + [anon_sym_break] = ACTIONS(577), + [anon_sym_continue] = ACTIONS(577), + [anon_sym_return] = ACTIONS(577), + [anon_sym_yield] = ACTIONS(577), + [anon_sym_synchronized] = ACTIONS(577), + [anon_sym_throw] = ACTIONS(577), + [anon_sym_try] = ACTIONS(577), + [anon_sym_catch] = ACTIONS(579), + [anon_sym_finally] = ACTIONS(581), + [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_with] = ACTIONS(577), + [anon_sym_package] = ACTIONS(577), + [anon_sym_import] = ACTIONS(577), + [anon_sym_enum] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_abstract] = ACTIONS(577), + [anon_sym_strictfp] = ACTIONS(577), + [anon_sym_native] = ACTIONS(577), + [anon_sym_transient] = ACTIONS(577), + [anon_sym_volatile] = ACTIONS(577), + [anon_sym_sealed] = ACTIONS(577), + [anon_sym_non_DASHsealed] = ACTIONS(575), + [anon_sym_record] = ACTIONS(577), + [anon_sym_ATinterface] = ACTIONS(575), + [anon_sym_interface] = ACTIONS(577), + [anon_sym_byte] = ACTIONS(577), + [anon_sym_short] = ACTIONS(577), + [anon_sym_int] = ACTIONS(577), + [anon_sym_long] = ACTIONS(577), + [anon_sym_char] = ACTIONS(577), + [anon_sym_float] = ACTIONS(577), + [anon_sym_double] = ACTIONS(577), + [sym_boolean_type] = ACTIONS(577), + [sym_void_type] = ACTIONS(577), + [sym_this] = ACTIONS(577), + [sym_super] = ACTIONS(577), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [159] = { - [sym_catch_clause] = STATE(163), - [sym_finally_clause] = STATE(358), - [aux_sym_try_statement_repeat1] = STATE(163), - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [sym_decimal_integer_literal] = ACTIONS(576), - [sym_hex_integer_literal] = ACTIONS(576), - [sym_octal_integer_literal] = ACTIONS(576), - [sym_binary_integer_literal] = ACTIONS(574), - [sym_decimal_floating_point_literal] = ACTIONS(574), - [sym_hex_floating_point_literal] = ACTIONS(576), - [sym_true] = ACTIONS(576), - [sym_false] = ACTIONS(576), - [sym_character_literal] = ACTIONS(574), - [anon_sym_DQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [sym_null_literal] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_final] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(574), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_PLUS_PLUS] = ACTIONS(574), - [anon_sym_DASH_DASH] = ACTIONS(574), - [anon_sym_new] = ACTIONS(576), - [anon_sym_class] = ACTIONS(576), - [anon_sym_switch] = ACTIONS(576), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_case] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_assert] = ACTIONS(576), - [anon_sym_do] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(576), - [anon_sym_synchronized] = ACTIONS(576), - [anon_sym_throw] = ACTIONS(576), - [anon_sym_try] = ACTIONS(576), - [anon_sym_catch] = ACTIONS(570), - [anon_sym_finally] = ACTIONS(572), - [anon_sym_if] = ACTIONS(576), - [anon_sym_else] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym_open] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_with] = ACTIONS(576), - [anon_sym_package] = ACTIONS(576), - [anon_sym_import] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_abstract] = ACTIONS(576), - [anon_sym_strictfp] = ACTIONS(576), - [anon_sym_native] = ACTIONS(576), - [anon_sym_transient] = ACTIONS(576), - [anon_sym_volatile] = ACTIONS(576), - [anon_sym_sealed] = ACTIONS(576), - [anon_sym_non_DASHsealed] = ACTIONS(574), - [anon_sym_record] = ACTIONS(576), - [anon_sym_ATinterface] = ACTIONS(574), - [anon_sym_interface] = ACTIONS(576), - [anon_sym_byte] = ACTIONS(576), - [anon_sym_short] = ACTIONS(576), - [anon_sym_int] = ACTIONS(576), - [anon_sym_long] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_float] = ACTIONS(576), - [anon_sym_double] = ACTIONS(576), - [sym_boolean_type] = ACTIONS(576), - [sym_void_type] = ACTIONS(576), - [sym_this] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [160] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(736), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(722), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29111,10 +28858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(583), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29134,47 +28881,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [160] = { + [sym_catch_clause] = STATE(164), + [sym_finally_clause] = STATE(257), + [aux_sym_try_statement_repeat1] = STATE(164), + [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(587), + [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), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(585), + [anon_sym_RBRACE] = 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_final] = 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_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_catch] = ACTIONS(579), + [anon_sym_finally] = ACTIONS(581), + [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_with] = 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_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), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [161] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(738), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(658), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29189,6 +29021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(589), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -29197,9 +29030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29220,46 +29052,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [162] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(714), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(738), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29281,10 +29113,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(582), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29305,131 +29137,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [163] = { - [sym_catch_clause] = STATE(214), - [sym_finally_clause] = STATE(325), - [aux_sym_try_statement_repeat1] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(586), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [sym_true] = ACTIONS(586), - [sym_false] = ACTIONS(586), - [sym_character_literal] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [sym_null_literal] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_PLUS_PLUS] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(584), - [anon_sym_new] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_case] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_synchronized] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_catch] = ACTIONS(570), - [anon_sym_finally] = ACTIONS(572), - [anon_sym_if] = ACTIONS(586), - [anon_sym_else] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(586), - [anon_sym_open] = ACTIONS(586), - [anon_sym_module] = ACTIONS(586), - [anon_sym_static] = ACTIONS(586), - [anon_sym_with] = ACTIONS(586), - [anon_sym_package] = ACTIONS(586), - [anon_sym_import] = ACTIONS(586), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_public] = ACTIONS(586), - [anon_sym_protected] = ACTIONS(586), - [anon_sym_private] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_strictfp] = ACTIONS(586), - [anon_sym_native] = ACTIONS(586), - [anon_sym_transient] = ACTIONS(586), - [anon_sym_volatile] = ACTIONS(586), - [anon_sym_sealed] = ACTIONS(586), - [anon_sym_non_DASHsealed] = ACTIONS(584), - [anon_sym_record] = ACTIONS(586), - [anon_sym_ATinterface] = ACTIONS(584), - [anon_sym_interface] = ACTIONS(586), - [anon_sym_byte] = ACTIONS(586), - [anon_sym_short] = ACTIONS(586), - [anon_sym_int] = ACTIONS(586), - [anon_sym_long] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_float] = ACTIONS(586), - [anon_sym_double] = ACTIONS(586), - [sym_boolean_type] = ACTIONS(586), - [sym_void_type] = ACTIONS(586), - [sym_this] = ACTIONS(586), - [sym_super] = ACTIONS(586), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(659), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(733), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29444,7 +29191,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(588), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -29453,8 +29199,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29474,47 +29221,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, + [164] = { + [sym_catch_clause] = STATE(197), + [sym_finally_clause] = STATE(286), + [aux_sym_try_statement_repeat1] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [sym_decimal_integer_literal] = ACTIONS(597), + [sym_hex_integer_literal] = ACTIONS(597), + [sym_octal_integer_literal] = ACTIONS(597), + [sym_binary_integer_literal] = ACTIONS(595), + [sym_decimal_floating_point_literal] = ACTIONS(595), + [sym_hex_floating_point_literal] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_character_literal] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [sym_null_literal] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_final] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_class] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_case] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_synchronized] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_catch] = ACTIONS(579), + [anon_sym_finally] = ACTIONS(581), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(597), + [anon_sym_open] = ACTIONS(597), + [anon_sym_module] = ACTIONS(597), + [anon_sym_static] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_package] = ACTIONS(597), + [anon_sym_import] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_public] = ACTIONS(597), + [anon_sym_protected] = ACTIONS(597), + [anon_sym_private] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_strictfp] = ACTIONS(597), + [anon_sym_native] = ACTIONS(597), + [anon_sym_transient] = ACTIONS(597), + [anon_sym_volatile] = ACTIONS(597), + [anon_sym_sealed] = ACTIONS(597), + [anon_sym_non_DASHsealed] = ACTIONS(595), + [anon_sym_record] = ACTIONS(597), + [anon_sym_ATinterface] = ACTIONS(595), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_byte] = ACTIONS(597), + [anon_sym_short] = ACTIONS(597), + [anon_sym_int] = ACTIONS(597), + [anon_sym_long] = ACTIONS(597), + [anon_sym_char] = ACTIONS(597), + [anon_sym_float] = ACTIONS(597), + [anon_sym_double] = ACTIONS(597), + [sym_boolean_type] = ACTIONS(597), + [sym_void_type] = ACTIONS(597), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, [165] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(742), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(674), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29529,6 +29361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(599), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -29537,9 +29370,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29560,46 +29392,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [166] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(729), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(675), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29614,6 +29446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(601), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -29622,9 +29455,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29645,46 +29477,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [167] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(709), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(722), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29706,10 +29538,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(603), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29730,46 +29562,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [168] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(672), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(677), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29784,7 +29616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_RPAREN] = ACTIONS(605), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -29793,8 +29625,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29815,46 +29647,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [169] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(673), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(678), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29869,7 +29701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(607), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -29878,8 +29710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29900,46 +29732,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [170] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(674), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(679), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -29954,7 +29786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_RPAREN] = ACTIONS(609), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -29963,8 +29795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -29985,46 +29817,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [171] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(675), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30039,7 +29871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(611), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30048,8 +29880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30070,46 +29902,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [172] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(676), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(681), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30124,7 +29956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(604), + [anon_sym_RPAREN] = ACTIONS(613), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30133,8 +29965,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30155,46 +29987,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [173] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(677), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(682), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30209,7 +30041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(615), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30218,8 +30050,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30240,46 +30072,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [174] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(678), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(683), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30294,7 +30126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(617), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30303,8 +30135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30325,46 +30157,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [175] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(679), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(684), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30379,7 +30211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(619), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30388,8 +30220,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30410,46 +30242,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [176] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(680), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(685), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30464,7 +30296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(621), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30473,8 +30305,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30495,46 +30327,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [177] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(681), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(687), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30549,7 +30381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(623), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30558,8 +30390,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30580,46 +30412,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [178] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(683), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(688), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30634,7 +30466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(616), + [anon_sym_RPAREN] = ACTIONS(625), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30643,8 +30475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30665,46 +30497,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [179] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(684), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(689), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30719,7 +30551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(618), + [anon_sym_RPAREN] = ACTIONS(627), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30728,8 +30560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30750,46 +30582,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(685), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(690), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30804,7 +30636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(620), + [anon_sym_RPAREN] = ACTIONS(629), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30813,8 +30645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30835,46 +30667,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [181] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(686), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(749), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30889,7 +30721,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(622), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30898,8 +30729,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -30920,46 +30752,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [182] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(687), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(750), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -30974,7 +30806,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(624), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30983,8 +30814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31005,46 +30837,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(744), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(751), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31067,9 +30899,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31090,46 +30922,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [184] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(745), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(753), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31152,9 +30984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31175,46 +31007,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(746), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(756), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31237,9 +31069,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(639), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31260,46 +31092,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(747), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(758), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31322,9 +31154,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31345,46 +31177,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(748), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(759), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31407,9 +31239,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31430,46 +31262,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(749), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(760), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31492,9 +31324,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(645), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31515,46 +31347,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(750), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(673), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31569,6 +31401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(647), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -31577,9 +31410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31600,46 +31432,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(661), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(736), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -31654,7 +31486,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(640), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -31663,8 +31494,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31685,47 +31517,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(632), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(739), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -31738,17 +31570,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(651), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31769,47 +31602,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(640), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(708), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -31822,17 +31655,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31853,47 +31686,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(641), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(731), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -31906,17 +31739,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -31937,47 +31770,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(644), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(744), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -31990,17 +31823,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32021,47 +31854,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(646), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(606), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32074,17 +31907,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32105,47 +31938,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(584), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(748), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32158,17 +31991,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32189,47 +32022,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(647), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [sym_catch_clause] = STATE(197), + [aux_sym_try_statement_repeat1] = STATE(197), + [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(655), + [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), + [anon_sym_DQUOTE] = ACTIONS(655), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(653), + [anon_sym_RBRACE] = ACTIONS(653), + [sym_null_literal] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_final] = 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_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_catch] = ACTIONS(657), + [anon_sym_finally] = 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_with] = 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_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_record] = ACTIONS(655), + [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), + }, + [198] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(714), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32242,17 +32159,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32272,48 +32189,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [198] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(648), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [199] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(654), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32326,17 +32243,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32356,48 +32273,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [199] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(649), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [200] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32410,17 +32327,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32440,48 +32357,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [200] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(599), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(600), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(557), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [201] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(739), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32494,17 +32411,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32524,47 +32441,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [201] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(743), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [202] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(712), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -32587,8 +32504,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32608,48 +32525,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [202] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(633), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [203] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(763), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32662,17 +32579,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32692,47 +32609,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(720), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [204] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(722), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -32755,8 +32672,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32776,48 +32693,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [204] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(598), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [205] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(716), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32830,17 +32747,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32860,48 +32777,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [205] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(601), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [206] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(717), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -32914,17 +32831,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -32944,47 +32861,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [206] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(722), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [207] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(697), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33007,8 +32924,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33028,47 +32945,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(732), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [208] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(730), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33091,8 +33008,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33112,47 +33029,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [208] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(725), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [209] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(755), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33175,8 +33092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33196,48 +33113,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [209] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(610), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [210] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(638), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -33250,17 +33167,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33280,48 +33197,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(714), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [211] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(640), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -33334,17 +33251,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33364,48 +33281,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [211] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(601), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [212] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(641), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -33418,17 +33335,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33448,48 +33365,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [212] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(619), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [213] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(642), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -33502,17 +33419,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33532,47 +33449,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [213] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(721), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [214] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(643), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), + [anon_sym_open] = ACTIONS(69), + [anon_sym_module] = ACTIONS(69), + [anon_sym_with] = ACTIONS(69), + [anon_sym_sealed] = ACTIONS(69), + [anon_sym_record] = ACTIONS(69), + [anon_sym_byte] = ACTIONS(87), + [anon_sym_short] = ACTIONS(87), + [anon_sym_int] = ACTIONS(87), + [anon_sym_long] = ACTIONS(87), + [anon_sym_char] = ACTIONS(87), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [sym_boolean_type] = ACTIONS(91), + [sym_void_type] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [215] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(595), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(588), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(527), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -33595,8 +33596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33616,132 +33617,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [sym_catch_clause] = STATE(214), - [aux_sym_try_statement_repeat1] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(642), - [sym_identifier] = ACTIONS(644), - [sym_decimal_integer_literal] = ACTIONS(644), - [sym_hex_integer_literal] = ACTIONS(644), - [sym_octal_integer_literal] = ACTIONS(644), - [sym_binary_integer_literal] = ACTIONS(642), - [sym_decimal_floating_point_literal] = ACTIONS(642), - [sym_hex_floating_point_literal] = ACTIONS(644), - [sym_true] = ACTIONS(644), - [sym_false] = ACTIONS(644), - [sym_character_literal] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [sym_null_literal] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_final] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_TILDE] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(642), - [anon_sym_new] = ACTIONS(644), - [anon_sym_class] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_assert] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_break] = ACTIONS(644), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_yield] = ACTIONS(644), - [anon_sym_synchronized] = ACTIONS(644), - [anon_sym_throw] = ACTIONS(644), - [anon_sym_try] = ACTIONS(644), - [anon_sym_catch] = ACTIONS(646), - [anon_sym_finally] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_else] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_open] = ACTIONS(644), - [anon_sym_module] = ACTIONS(644), - [anon_sym_static] = ACTIONS(644), - [anon_sym_with] = ACTIONS(644), - [anon_sym_package] = ACTIONS(644), - [anon_sym_import] = ACTIONS(644), - [anon_sym_enum] = ACTIONS(644), - [anon_sym_public] = ACTIONS(644), - [anon_sym_protected] = ACTIONS(644), - [anon_sym_private] = ACTIONS(644), - [anon_sym_abstract] = ACTIONS(644), - [anon_sym_strictfp] = ACTIONS(644), - [anon_sym_native] = ACTIONS(644), - [anon_sym_transient] = ACTIONS(644), - [anon_sym_volatile] = ACTIONS(644), - [anon_sym_sealed] = ACTIONS(644), - [anon_sym_non_DASHsealed] = ACTIONS(642), - [anon_sym_record] = ACTIONS(644), - [anon_sym_ATinterface] = ACTIONS(642), - [anon_sym_interface] = ACTIONS(644), - [anon_sym_byte] = ACTIONS(644), - [anon_sym_short] = ACTIONS(644), - [anon_sym_int] = ACTIONS(644), - [anon_sym_long] = ACTIONS(644), - [anon_sym_char] = ACTIONS(644), - [anon_sym_float] = ACTIONS(644), - [anon_sym_double] = ACTIONS(644), - [sym_boolean_type] = ACTIONS(644), - [sym_void_type] = ACTIONS(644), - [sym_this] = ACTIONS(644), - [sym_super] = ACTIONS(644), + [216] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(645), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), + [anon_sym_open] = ACTIONS(69), + [anon_sym_module] = ACTIONS(69), + [anon_sym_with] = ACTIONS(69), + [anon_sym_sealed] = ACTIONS(69), + [anon_sym_record] = ACTIONS(69), + [anon_sym_byte] = ACTIONS(87), + [anon_sym_short] = ACTIONS(87), + [anon_sym_int] = ACTIONS(87), + [anon_sym_long] = ACTIONS(87), + [anon_sym_char] = ACTIONS(87), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [sym_boolean_type] = ACTIONS(91), + [sym_void_type] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(690), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [217] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(607), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -33754,17 +33755,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33784,48 +33785,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [216] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(631), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [218] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(646), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -33838,17 +33839,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33868,48 +33869,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(700), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [219] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(635), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -33922,17 +33923,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -33952,48 +33953,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(698), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [220] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(647), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -34006,17 +34007,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34036,48 +34037,48 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(620), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [221] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(595), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(588), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(527), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -34090,17 +34091,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34120,48 +34121,48 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(699), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [222] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(648), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -34174,17 +34175,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34204,48 +34205,48 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(726), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [223] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(649), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -34258,17 +34259,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34288,47 +34289,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(728), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [224] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(747), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34351,8 +34352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34372,48 +34373,48 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(751), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [225] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(605), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -34426,17 +34427,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34456,47 +34457,131 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [226] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(606), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), + [anon_sym_open] = ACTIONS(69), + [anon_sym_module] = ACTIONS(69), + [anon_sym_with] = ACTIONS(69), + [anon_sym_sealed] = ACTIONS(69), + [anon_sym_record] = ACTIONS(69), + [anon_sym_byte] = ACTIONS(87), + [anon_sym_short] = ACTIONS(87), + [anon_sym_int] = ACTIONS(87), + [anon_sym_long] = ACTIONS(87), + [anon_sym_char] = ACTIONS(87), + [anon_sym_float] = ACTIONS(89), + [anon_sym_double] = ACTIONS(89), + [sym_boolean_type] = ACTIONS(91), + [sym_void_type] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(757), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34519,8 +34604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34540,47 +34625,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(611), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [228] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34603,8 +34688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34624,47 +34709,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(701), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [229] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34687,8 +34772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34708,47 +34793,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(724), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [230] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(614), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34771,8 +34856,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34792,47 +34877,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(617), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [231] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(619), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34855,8 +34940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34876,47 +34961,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(622), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [232] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -34939,8 +35024,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -34960,47 +35045,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(584), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [233] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(625), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35023,8 +35108,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35044,47 +35129,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(612), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [234] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(617), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35107,8 +35192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35128,47 +35213,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(615), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [235] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(607), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35191,8 +35276,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35212,47 +35297,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [236] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(622), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35275,8 +35360,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35296,47 +35381,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(711), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [237] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(624), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35359,8 +35444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35380,47 +35465,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(712), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [238] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(623), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35443,8 +35528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35464,47 +35549,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [236] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(614), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [239] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(728), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35527,8 +35612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35548,47 +35633,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(599), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(600), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(557), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [240] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(735), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35611,8 +35696,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35632,47 +35717,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(598), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [241] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(723), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35695,8 +35780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35716,47 +35801,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(708), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [242] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(725), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35779,8 +35864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35800,47 +35885,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(733), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [243] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(726), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35863,8 +35948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35884,47 +35969,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(739), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [244] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(605), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -35947,8 +36032,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -35968,47 +36053,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), + [245] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), [sym_expression] = STATE(740), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36031,92 +36116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(634), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -36136,132 +36137,48 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(638), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(643), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), + [246] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(743), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -36274,17 +36191,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -36304,47 +36221,47 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(741), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), + [247] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(746), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1363), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(441), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(441), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(431), + [aux_sym_array_creation_expression_repeat1] = STATE(789), [sym_identifier] = ACTIONS(418), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -36367,8 +36284,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -36388,48 +36305,48 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(719), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [248] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_expression] = STATE(644), + [sym_cast_expression] = STATE(603), + [sym_assignment_expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_instanceof_expression] = STATE(603), + [sym_lambda_expression] = STATE(603), + [sym_inferred_parameters] = STATE(1384), + [sym_ternary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_update_expression] = STATE(603), + [sym_primary_expression] = STATE(549), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(454), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(454), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_switch_expression] = STATE(603), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(446), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(551), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -36442,17 +36359,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_AT] = ACTIONS(435), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), [anon_sym_with] = ACTIONS(69), @@ -36472,39 +36389,39 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_primary_expression] = STATE(1127), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(999), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_resource] = STATE(1291), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(831), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(799), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__reserved_identifier] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(649), + [249] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_primary_expression] = STATE(1080), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(992), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(562), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_resource] = STATE(1188), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(840), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(802), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym__reserved_identifier] = STATE(993), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(660), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -36517,28 +36434,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_final] = ACTIONS(462), - [anon_sym_new] = ACTIONS(655), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(662), + [anon_sym_RPAREN] = ACTIONS(664), + [anon_sym_final] = ACTIONS(473), + [anon_sym_new] = ACTIONS(666), + [anon_sym_default] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -36554,203 +36471,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [sym_decimal_integer_literal] = ACTIONS(456), - [sym_hex_integer_literal] = ACTIONS(456), - [sym_octal_integer_literal] = ACTIONS(456), - [sym_binary_integer_literal] = ACTIONS(454), - [sym_decimal_floating_point_literal] = ACTIONS(454), - [sym_hex_floating_point_literal] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_character_literal] = ACTIONS(454), - [anon_sym_DQUOTE] = ACTIONS(456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [sym_null_literal] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_final] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_PLUS_PLUS] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(454), - [anon_sym_new] = ACTIONS(456), - [anon_sym_class] = ACTIONS(456), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_case] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_assert] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_synchronized] = ACTIONS(456), - [anon_sym_throw] = ACTIONS(456), - [anon_sym_try] = ACTIONS(456), - [anon_sym_catch] = ACTIONS(456), - [anon_sym_finally] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(456), - [anon_sym_open] = ACTIONS(456), - [anon_sym_module] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_package] = ACTIONS(456), - [anon_sym_import] = ACTIONS(456), - [anon_sym_enum] = ACTIONS(456), - [anon_sym_public] = ACTIONS(456), - [anon_sym_protected] = ACTIONS(456), - [anon_sym_private] = ACTIONS(456), - [anon_sym_abstract] = ACTIONS(456), - [anon_sym_strictfp] = ACTIONS(456), - [anon_sym_native] = ACTIONS(456), - [anon_sym_transient] = ACTIONS(456), - [anon_sym_volatile] = ACTIONS(456), - [anon_sym_sealed] = ACTIONS(456), - [anon_sym_non_DASHsealed] = ACTIONS(454), - [anon_sym_record] = ACTIONS(456), - [anon_sym_ATinterface] = ACTIONS(454), - [anon_sym_interface] = ACTIONS(456), - [anon_sym_byte] = ACTIONS(456), - [anon_sym_short] = ACTIONS(456), - [anon_sym_int] = ACTIONS(456), - [anon_sym_long] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_float] = ACTIONS(456), - [anon_sym_double] = ACTIONS(456), - [sym_boolean_type] = ACTIONS(456), - [sym_void_type] = ACTIONS(456), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), + [250] = { + [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(670), + [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), + [anon_sym_DQUOTE] = ACTIONS(670), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [sym_null_literal] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_LT] = 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_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_catch] = ACTIONS(670), + [anon_sym_finally] = 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_with] = 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_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), - [sym_decimal_integer_literal] = ACTIONS(436), - [sym_hex_integer_literal] = ACTIONS(436), - [sym_octal_integer_literal] = ACTIONS(436), - [sym_binary_integer_literal] = ACTIONS(434), - [sym_decimal_floating_point_literal] = ACTIONS(434), - [sym_hex_floating_point_literal] = ACTIONS(436), - [sym_true] = ACTIONS(436), - [sym_false] = ACTIONS(436), - [sym_character_literal] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(434), - [sym_null_literal] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_final] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(434), - [anon_sym_DASH_DASH] = ACTIONS(434), - [anon_sym_new] = ACTIONS(436), - [anon_sym_class] = ACTIONS(436), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_assert] = ACTIONS(436), - [anon_sym_do] = ACTIONS(436), - [anon_sym_while] = ACTIONS(436), - [anon_sym_break] = ACTIONS(436), - [anon_sym_continue] = ACTIONS(436), - [anon_sym_return] = ACTIONS(436), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_synchronized] = ACTIONS(436), - [anon_sym_throw] = ACTIONS(436), - [anon_sym_try] = ACTIONS(436), - [anon_sym_catch] = ACTIONS(436), - [anon_sym_finally] = ACTIONS(436), - [anon_sym_if] = ACTIONS(436), - [anon_sym_else] = ACTIONS(436), - [anon_sym_for] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_open] = ACTIONS(436), - [anon_sym_module] = ACTIONS(436), - [anon_sym_static] = ACTIONS(436), - [anon_sym_with] = ACTIONS(436), - [anon_sym_package] = ACTIONS(436), - [anon_sym_import] = ACTIONS(436), - [anon_sym_enum] = ACTIONS(436), - [anon_sym_public] = ACTIONS(436), - [anon_sym_protected] = ACTIONS(436), - [anon_sym_private] = ACTIONS(436), - [anon_sym_abstract] = ACTIONS(436), - [anon_sym_strictfp] = ACTIONS(436), - [anon_sym_native] = ACTIONS(436), - [anon_sym_transient] = ACTIONS(436), - [anon_sym_volatile] = ACTIONS(436), - [anon_sym_sealed] = ACTIONS(436), - [anon_sym_non_DASHsealed] = ACTIONS(434), - [anon_sym_record] = ACTIONS(436), - [anon_sym_ATinterface] = ACTIONS(434), - [anon_sym_interface] = ACTIONS(436), - [anon_sym_byte] = ACTIONS(436), - [anon_sym_short] = ACTIONS(436), - [anon_sym_int] = ACTIONS(436), - [anon_sym_long] = ACTIONS(436), - [anon_sym_char] = ACTIONS(436), - [anon_sym_float] = ACTIONS(436), - [anon_sym_double] = ACTIONS(436), - [sym_boolean_type] = ACTIONS(436), - [sym_void_type] = ACTIONS(436), - [sym_this] = ACTIONS(436), - [sym_super] = ACTIONS(436), + [251] = { + [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(463), + [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), + [anon_sym_DQUOTE] = ACTIONS(463), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), + [anon_sym_RBRACE] = 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_final] = 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_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_catch] = ACTIONS(463), + [anon_sym_finally] = 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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_primary_expression] = STATE(1127), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(999), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_resource] = STATE(1291), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(831), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(799), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__reserved_identifier] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(649), + [252] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_primary_expression] = STATE(1080), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(992), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(562), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_resource] = STATE(1188), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(840), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(802), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym__reserved_identifier] = STATE(993), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(660), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -36763,28 +36680,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_final] = ACTIONS(462), - [anon_sym_new] = ACTIONS(655), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(662), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_final] = ACTIONS(473), + [anon_sym_new] = ACTIONS(666), + [anon_sym_default] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -36800,121 +36717,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(659), - [sym_identifier] = ACTIONS(661), - [sym_decimal_integer_literal] = ACTIONS(661), - [sym_hex_integer_literal] = ACTIONS(661), - [sym_octal_integer_literal] = ACTIONS(661), - [sym_binary_integer_literal] = ACTIONS(659), - [sym_decimal_floating_point_literal] = ACTIONS(659), - [sym_hex_floating_point_literal] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_character_literal] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_RBRACE] = ACTIONS(659), - [sym_null_literal] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_final] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(659), - [anon_sym_DASH_DASH] = ACTIONS(659), - [anon_sym_new] = ACTIONS(661), - [anon_sym_class] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_case] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_assert] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_yield] = ACTIONS(661), - [anon_sym_synchronized] = ACTIONS(661), - [anon_sym_throw] = ACTIONS(661), - [anon_sym_try] = ACTIONS(661), - [anon_sym_catch] = ACTIONS(661), - [anon_sym_finally] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_else] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(661), - [anon_sym_open] = ACTIONS(661), - [anon_sym_module] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_with] = ACTIONS(661), - [anon_sym_package] = ACTIONS(661), - [anon_sym_import] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_public] = ACTIONS(661), - [anon_sym_protected] = ACTIONS(661), - [anon_sym_private] = ACTIONS(661), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_strictfp] = ACTIONS(661), - [anon_sym_native] = ACTIONS(661), - [anon_sym_transient] = ACTIONS(661), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_sealed] = ACTIONS(661), - [anon_sym_non_DASHsealed] = ACTIONS(659), - [anon_sym_record] = ACTIONS(661), - [anon_sym_ATinterface] = ACTIONS(659), - [anon_sym_interface] = ACTIONS(661), - [anon_sym_byte] = ACTIONS(661), - [anon_sym_short] = ACTIONS(661), - [anon_sym_int] = ACTIONS(661), - [anon_sym_long] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_float] = ACTIONS(661), - [anon_sym_double] = ACTIONS(661), - [sym_boolean_type] = ACTIONS(661), - [sym_void_type] = ACTIONS(661), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), + [253] = { + [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(467), + [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), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(465), + [anon_sym_RBRACE] = 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_final] = 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_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_catch] = ACTIONS(467), + [anon_sym_finally] = 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_with] = 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_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), }, - [253] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_primary_expression] = STATE(1127), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(999), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_resource] = STATE(1291), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(831), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(799), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__reserved_identifier] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(649), + [254] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_primary_expression] = STATE(1080), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(992), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(562), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_resource] = STATE(1083), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(840), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(802), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym__reserved_identifier] = STATE(993), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(660), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -36927,27 +36844,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_final] = ACTIONS(462), - [anon_sym_new] = ACTIONS(655), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(662), + [anon_sym_final] = ACTIONS(473), + [anon_sym_new] = ACTIONS(666), + [anon_sym_default] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -36963,39 +36880,39 @@ 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(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_primary_expression] = STATE(1127), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(999), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_resource] = STATE(1139), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(831), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(799), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__reserved_identifier] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(649), + [255] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), + [sym_primary_expression] = STATE(1080), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(992), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(562), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym_resource] = STATE(1188), + [sym__annotation] = STATE(718), + [sym_marker_annotation] = STATE(718), + [sym_annotation] = STATE(718), + [sym_modifiers] = STATE(840), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(802), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym__reserved_identifier] = STATE(993), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [aux_sym_modifiers_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(660), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -37008,27 +36925,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_final] = ACTIONS(462), - [anon_sym_new] = ACTIONS(655), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(662), + [anon_sym_final] = ACTIONS(473), + [anon_sym_new] = ACTIONS(666), + [anon_sym_default] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_synchronized] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), [anon_sym_open] = ACTIONS(69), [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), + [anon_sym_static] = ACTIONS(473), [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), + [anon_sym_public] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_abstract] = 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(477), + [anon_sym_non_DASHsealed] = ACTIONS(479), [anon_sym_record] = ACTIONS(69), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), @@ -37044,11829 +36961,11829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(663), - [sym_identifier] = ACTIONS(665), - [sym_decimal_integer_literal] = ACTIONS(665), - [sym_hex_integer_literal] = ACTIONS(665), - [sym_octal_integer_literal] = ACTIONS(665), - [sym_binary_integer_literal] = ACTIONS(663), - [sym_decimal_floating_point_literal] = ACTIONS(663), - [sym_hex_floating_point_literal] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_character_literal] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(663), - [sym_null_literal] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(665), - [anon_sym_final] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_new] = ACTIONS(665), - [anon_sym_class] = ACTIONS(665), - [anon_sym_switch] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_case] = ACTIONS(665), - [anon_sym_default] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_assert] = ACTIONS(665), - [anon_sym_do] = ACTIONS(665), - [anon_sym_while] = ACTIONS(665), - [anon_sym_break] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_return] = ACTIONS(665), - [anon_sym_yield] = ACTIONS(665), - [anon_sym_synchronized] = ACTIONS(665), - [anon_sym_throw] = ACTIONS(665), - [anon_sym_try] = ACTIONS(665), - [anon_sym_if] = ACTIONS(665), - [anon_sym_else] = ACTIONS(665), - [anon_sym_for] = ACTIONS(665), - [anon_sym_AT] = ACTIONS(665), - [anon_sym_open] = ACTIONS(665), - [anon_sym_module] = ACTIONS(665), - [anon_sym_static] = ACTIONS(665), - [anon_sym_with] = ACTIONS(665), - [anon_sym_package] = ACTIONS(665), - [anon_sym_import] = ACTIONS(665), - [anon_sym_enum] = ACTIONS(665), - [anon_sym_public] = ACTIONS(665), - [anon_sym_protected] = ACTIONS(665), - [anon_sym_private] = ACTIONS(665), - [anon_sym_abstract] = ACTIONS(665), - [anon_sym_strictfp] = ACTIONS(665), - [anon_sym_native] = ACTIONS(665), - [anon_sym_transient] = ACTIONS(665), - [anon_sym_volatile] = ACTIONS(665), - [anon_sym_sealed] = ACTIONS(665), - [anon_sym_non_DASHsealed] = ACTIONS(663), - [anon_sym_record] = ACTIONS(665), - [anon_sym_ATinterface] = ACTIONS(663), - [anon_sym_interface] = ACTIONS(665), - [anon_sym_byte] = ACTIONS(665), - [anon_sym_short] = ACTIONS(665), - [anon_sym_int] = ACTIONS(665), - [anon_sym_long] = ACTIONS(665), - [anon_sym_char] = ACTIONS(665), - [anon_sym_float] = ACTIONS(665), - [anon_sym_double] = ACTIONS(665), - [sym_boolean_type] = ACTIONS(665), - [sym_void_type] = ACTIONS(665), - [sym_this] = ACTIONS(665), - [sym_super] = ACTIONS(665), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, [256] = { - [ts_builtin_sym_end] = ACTIONS(667), - [sym_identifier] = ACTIONS(669), - [sym_decimal_integer_literal] = ACTIONS(669), - [sym_hex_integer_literal] = ACTIONS(669), - [sym_octal_integer_literal] = ACTIONS(669), - [sym_binary_integer_literal] = ACTIONS(667), - [sym_decimal_floating_point_literal] = ACTIONS(667), - [sym_hex_floating_point_literal] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_character_literal] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(667), - [sym_null_literal] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(669), - [anon_sym_DASH] = ACTIONS(669), - [anon_sym_final] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(667), - [anon_sym_TILDE] = ACTIONS(667), - [anon_sym_PLUS_PLUS] = ACTIONS(667), - [anon_sym_DASH_DASH] = ACTIONS(667), - [anon_sym_new] = ACTIONS(669), - [anon_sym_class] = ACTIONS(669), - [anon_sym_switch] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_case] = ACTIONS(669), - [anon_sym_default] = ACTIONS(669), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_assert] = ACTIONS(669), - [anon_sym_do] = ACTIONS(669), - [anon_sym_while] = ACTIONS(669), - [anon_sym_break] = ACTIONS(669), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_return] = ACTIONS(669), - [anon_sym_yield] = ACTIONS(669), - [anon_sym_synchronized] = ACTIONS(669), - [anon_sym_throw] = ACTIONS(669), - [anon_sym_try] = ACTIONS(669), - [anon_sym_if] = ACTIONS(669), - [anon_sym_else] = ACTIONS(669), - [anon_sym_for] = ACTIONS(669), - [anon_sym_AT] = ACTIONS(669), - [anon_sym_open] = ACTIONS(669), - [anon_sym_module] = ACTIONS(669), - [anon_sym_static] = ACTIONS(669), - [anon_sym_with] = ACTIONS(669), - [anon_sym_package] = ACTIONS(669), - [anon_sym_import] = ACTIONS(669), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_public] = ACTIONS(669), - [anon_sym_protected] = ACTIONS(669), - [anon_sym_private] = ACTIONS(669), - [anon_sym_abstract] = ACTIONS(669), - [anon_sym_strictfp] = ACTIONS(669), - [anon_sym_native] = ACTIONS(669), - [anon_sym_transient] = ACTIONS(669), - [anon_sym_volatile] = ACTIONS(669), - [anon_sym_sealed] = ACTIONS(669), - [anon_sym_non_DASHsealed] = ACTIONS(667), - [anon_sym_record] = ACTIONS(669), - [anon_sym_ATinterface] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(669), - [anon_sym_byte] = ACTIONS(669), - [anon_sym_short] = ACTIONS(669), - [anon_sym_int] = ACTIONS(669), - [anon_sym_long] = ACTIONS(669), - [anon_sym_char] = ACTIONS(669), - [anon_sym_float] = ACTIONS(669), - [anon_sym_double] = ACTIONS(669), - [sym_boolean_type] = ACTIONS(669), - [sym_void_type] = ACTIONS(669), - [sym_this] = ACTIONS(669), - [sym_super] = ACTIONS(669), + [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(676), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_decimal_integer_literal] = ACTIONS(673), - [sym_hex_integer_literal] = ACTIONS(673), - [sym_octal_integer_literal] = ACTIONS(673), - [sym_binary_integer_literal] = ACTIONS(671), - [sym_decimal_floating_point_literal] = ACTIONS(671), - [sym_hex_floating_point_literal] = ACTIONS(673), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [sym_character_literal] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(671), - [sym_null_literal] = ACTIONS(673), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_final] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_PLUS_PLUS] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_class] = ACTIONS(673), - [anon_sym_switch] = ACTIONS(673), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_case] = ACTIONS(673), - [anon_sym_default] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_do] = ACTIONS(673), - [anon_sym_while] = ACTIONS(673), - [anon_sym_break] = ACTIONS(673), - [anon_sym_continue] = ACTIONS(673), - [anon_sym_return] = ACTIONS(673), - [anon_sym_yield] = ACTIONS(673), - [anon_sym_synchronized] = ACTIONS(673), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_try] = ACTIONS(673), - [anon_sym_if] = ACTIONS(673), - [anon_sym_else] = ACTIONS(673), - [anon_sym_for] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(673), - [anon_sym_open] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_static] = ACTIONS(673), - [anon_sym_with] = ACTIONS(673), - [anon_sym_package] = ACTIONS(673), - [anon_sym_import] = ACTIONS(673), - [anon_sym_enum] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_abstract] = ACTIONS(673), - [anon_sym_strictfp] = ACTIONS(673), - [anon_sym_native] = ACTIONS(673), - [anon_sym_transient] = ACTIONS(673), - [anon_sym_volatile] = ACTIONS(673), - [anon_sym_sealed] = ACTIONS(673), - [anon_sym_non_DASHsealed] = ACTIONS(671), - [anon_sym_record] = ACTIONS(673), - [anon_sym_ATinterface] = ACTIONS(671), - [anon_sym_interface] = ACTIONS(673), - [anon_sym_byte] = ACTIONS(673), - [anon_sym_short] = ACTIONS(673), - [anon_sym_int] = ACTIONS(673), - [anon_sym_long] = ACTIONS(673), - [anon_sym_char] = ACTIONS(673), - [anon_sym_float] = ACTIONS(673), - [anon_sym_double] = ACTIONS(673), - [sym_boolean_type] = ACTIONS(673), - [sym_void_type] = ACTIONS(673), - [sym_this] = ACTIONS(673), - [sym_super] = ACTIONS(673), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [sym_decimal_integer_literal] = ACTIONS(597), + [sym_hex_integer_literal] = ACTIONS(597), + [sym_octal_integer_literal] = ACTIONS(597), + [sym_binary_integer_literal] = ACTIONS(595), + [sym_decimal_floating_point_literal] = ACTIONS(595), + [sym_hex_floating_point_literal] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_character_literal] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [sym_null_literal] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_final] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_class] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_case] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_synchronized] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(597), + [anon_sym_open] = ACTIONS(597), + [anon_sym_module] = ACTIONS(597), + [anon_sym_static] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_package] = ACTIONS(597), + [anon_sym_import] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_public] = ACTIONS(597), + [anon_sym_protected] = ACTIONS(597), + [anon_sym_private] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_strictfp] = ACTIONS(597), + [anon_sym_native] = ACTIONS(597), + [anon_sym_transient] = ACTIONS(597), + [anon_sym_volatile] = ACTIONS(597), + [anon_sym_sealed] = ACTIONS(597), + [anon_sym_non_DASHsealed] = ACTIONS(595), + [anon_sym_record] = ACTIONS(597), + [anon_sym_ATinterface] = ACTIONS(595), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_byte] = ACTIONS(597), + [anon_sym_short] = ACTIONS(597), + [anon_sym_int] = ACTIONS(597), + [anon_sym_long] = ACTIONS(597), + [anon_sym_char] = ACTIONS(597), + [anon_sym_float] = ACTIONS(597), + [anon_sym_double] = ACTIONS(597), + [sym_boolean_type] = ACTIONS(597), + [sym_void_type] = ACTIONS(597), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [258] = { - [ts_builtin_sym_end] = ACTIONS(675), - [sym_identifier] = ACTIONS(677), - [sym_decimal_integer_literal] = ACTIONS(677), - [sym_hex_integer_literal] = ACTIONS(677), - [sym_octal_integer_literal] = ACTIONS(677), - [sym_binary_integer_literal] = ACTIONS(675), - [sym_decimal_floating_point_literal] = ACTIONS(675), - [sym_hex_floating_point_literal] = ACTIONS(677), - [sym_true] = ACTIONS(677), - [sym_false] = ACTIONS(677), - [sym_character_literal] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(675), - [sym_null_literal] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_final] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_new] = ACTIONS(677), - [anon_sym_class] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_case] = ACTIONS(677), - [anon_sym_default] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_assert] = ACTIONS(677), - [anon_sym_do] = ACTIONS(677), - [anon_sym_while] = ACTIONS(677), - [anon_sym_break] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(677), - [anon_sym_return] = ACTIONS(677), - [anon_sym_yield] = ACTIONS(677), - [anon_sym_synchronized] = ACTIONS(677), - [anon_sym_throw] = ACTIONS(677), - [anon_sym_try] = ACTIONS(677), - [anon_sym_if] = ACTIONS(677), - [anon_sym_else] = ACTIONS(677), - [anon_sym_for] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym_open] = ACTIONS(677), - [anon_sym_module] = ACTIONS(677), - [anon_sym_static] = ACTIONS(677), - [anon_sym_with] = ACTIONS(677), - [anon_sym_package] = ACTIONS(677), - [anon_sym_import] = ACTIONS(677), - [anon_sym_enum] = ACTIONS(677), - [anon_sym_public] = ACTIONS(677), - [anon_sym_protected] = ACTIONS(677), - [anon_sym_private] = ACTIONS(677), - [anon_sym_abstract] = ACTIONS(677), - [anon_sym_strictfp] = ACTIONS(677), - [anon_sym_native] = ACTIONS(677), - [anon_sym_transient] = ACTIONS(677), - [anon_sym_volatile] = ACTIONS(677), - [anon_sym_sealed] = ACTIONS(677), - [anon_sym_non_DASHsealed] = ACTIONS(675), - [anon_sym_record] = ACTIONS(677), - [anon_sym_ATinterface] = ACTIONS(675), - [anon_sym_interface] = ACTIONS(677), - [anon_sym_byte] = ACTIONS(677), - [anon_sym_short] = ACTIONS(677), - [anon_sym_int] = ACTIONS(677), - [anon_sym_long] = ACTIONS(677), - [anon_sym_char] = ACTIONS(677), - [anon_sym_float] = ACTIONS(677), - [anon_sym_double] = ACTIONS(677), - [sym_boolean_type] = ACTIONS(677), - [sym_void_type] = ACTIONS(677), - [sym_this] = ACTIONS(677), - [sym_super] = ACTIONS(677), + [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(680), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(679), - [sym_identifier] = ACTIONS(681), - [sym_decimal_integer_literal] = ACTIONS(681), - [sym_hex_integer_literal] = ACTIONS(681), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(679), - [sym_decimal_floating_point_literal] = ACTIONS(679), - [sym_hex_floating_point_literal] = ACTIONS(681), - [sym_true] = ACTIONS(681), - [sym_false] = ACTIONS(681), - [sym_character_literal] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [anon_sym_RBRACE] = ACTIONS(679), - [sym_null_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_final] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_new] = ACTIONS(681), - [anon_sym_class] = ACTIONS(681), - [anon_sym_switch] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_case] = ACTIONS(681), - [anon_sym_default] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_assert] = ACTIONS(681), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(681), - [anon_sym_break] = ACTIONS(681), - [anon_sym_continue] = ACTIONS(681), - [anon_sym_return] = ACTIONS(681), - [anon_sym_yield] = ACTIONS(681), - [anon_sym_synchronized] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(681), - [anon_sym_try] = ACTIONS(681), - [anon_sym_if] = ACTIONS(681), - [anon_sym_else] = ACTIONS(681), - [anon_sym_for] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_open] = ACTIONS(681), - [anon_sym_module] = ACTIONS(681), - [anon_sym_static] = ACTIONS(681), - [anon_sym_with] = ACTIONS(681), - [anon_sym_package] = ACTIONS(681), - [anon_sym_import] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(681), - [anon_sym_public] = ACTIONS(681), - [anon_sym_protected] = ACTIONS(681), - [anon_sym_private] = ACTIONS(681), - [anon_sym_abstract] = ACTIONS(681), - [anon_sym_strictfp] = ACTIONS(681), - [anon_sym_native] = ACTIONS(681), - [anon_sym_transient] = ACTIONS(681), - [anon_sym_volatile] = ACTIONS(681), - [anon_sym_sealed] = ACTIONS(681), - [anon_sym_non_DASHsealed] = ACTIONS(679), - [anon_sym_record] = ACTIONS(681), - [anon_sym_ATinterface] = ACTIONS(679), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_byte] = ACTIONS(681), - [anon_sym_short] = ACTIONS(681), - [anon_sym_int] = ACTIONS(681), - [anon_sym_long] = ACTIONS(681), - [anon_sym_char] = ACTIONS(681), - [anon_sym_float] = ACTIONS(681), - [anon_sym_double] = ACTIONS(681), - [sym_boolean_type] = ACTIONS(681), - [sym_void_type] = ACTIONS(681), - [sym_this] = ACTIONS(681), - [sym_super] = ACTIONS(681), + [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(684), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(683), - [sym_identifier] = ACTIONS(685), - [sym_decimal_integer_literal] = ACTIONS(685), - [sym_hex_integer_literal] = ACTIONS(685), - [sym_octal_integer_literal] = ACTIONS(685), - [sym_binary_integer_literal] = ACTIONS(683), - [sym_decimal_floating_point_literal] = ACTIONS(683), - [sym_hex_floating_point_literal] = ACTIONS(685), - [sym_true] = ACTIONS(685), - [sym_false] = ACTIONS(685), - [sym_character_literal] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(685), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(683), - [sym_null_literal] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_final] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_PLUS_PLUS] = ACTIONS(683), - [anon_sym_DASH_DASH] = ACTIONS(683), - [anon_sym_new] = ACTIONS(685), - [anon_sym_class] = ACTIONS(685), - [anon_sym_switch] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_case] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(683), - [anon_sym_assert] = ACTIONS(685), - [anon_sym_do] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_synchronized] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(685), - [anon_sym_try] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_else] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym_open] = ACTIONS(685), - [anon_sym_module] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_with] = ACTIONS(685), - [anon_sym_package] = ACTIONS(685), - [anon_sym_import] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_public] = ACTIONS(685), - [anon_sym_protected] = ACTIONS(685), - [anon_sym_private] = ACTIONS(685), - [anon_sym_abstract] = ACTIONS(685), - [anon_sym_strictfp] = ACTIONS(685), - [anon_sym_native] = ACTIONS(685), - [anon_sym_transient] = ACTIONS(685), - [anon_sym_volatile] = ACTIONS(685), - [anon_sym_sealed] = ACTIONS(685), - [anon_sym_non_DASHsealed] = ACTIONS(683), - [anon_sym_record] = ACTIONS(685), - [anon_sym_ATinterface] = ACTIONS(683), - [anon_sym_interface] = ACTIONS(685), - [anon_sym_byte] = ACTIONS(685), - [anon_sym_short] = ACTIONS(685), - [anon_sym_int] = ACTIONS(685), - [anon_sym_long] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_float] = ACTIONS(685), - [anon_sym_double] = ACTIONS(685), - [sym_boolean_type] = ACTIONS(685), - [sym_void_type] = ACTIONS(685), - [sym_this] = ACTIONS(685), - [sym_super] = ACTIONS(685), + [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(688), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [sym_decimal_integer_literal] = ACTIONS(689), - [sym_hex_integer_literal] = ACTIONS(689), - [sym_octal_integer_literal] = ACTIONS(689), - [sym_binary_integer_literal] = ACTIONS(687), - [sym_decimal_floating_point_literal] = ACTIONS(687), - [sym_hex_floating_point_literal] = ACTIONS(689), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_character_literal] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(687), - [anon_sym_RBRACE] = ACTIONS(687), - [sym_null_literal] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_final] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_new] = ACTIONS(689), - [anon_sym_class] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(687), - [anon_sym_case] = ACTIONS(689), - [anon_sym_default] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_assert] = ACTIONS(689), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(689), - [anon_sym_break] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_return] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_synchronized] = ACTIONS(689), - [anon_sym_throw] = ACTIONS(689), - [anon_sym_try] = ACTIONS(689), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(689), - [anon_sym_for] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_open] = ACTIONS(689), - [anon_sym_module] = ACTIONS(689), - [anon_sym_static] = ACTIONS(689), - [anon_sym_with] = ACTIONS(689), - [anon_sym_package] = ACTIONS(689), - [anon_sym_import] = ACTIONS(689), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_public] = ACTIONS(689), - [anon_sym_protected] = ACTIONS(689), - [anon_sym_private] = ACTIONS(689), - [anon_sym_abstract] = ACTIONS(689), - [anon_sym_strictfp] = ACTIONS(689), - [anon_sym_native] = ACTIONS(689), - [anon_sym_transient] = ACTIONS(689), - [anon_sym_volatile] = ACTIONS(689), - [anon_sym_sealed] = ACTIONS(689), - [anon_sym_non_DASHsealed] = ACTIONS(687), - [anon_sym_record] = ACTIONS(689), - [anon_sym_ATinterface] = ACTIONS(687), - [anon_sym_interface] = ACTIONS(689), - [anon_sym_byte] = ACTIONS(689), - [anon_sym_short] = ACTIONS(689), - [anon_sym_int] = ACTIONS(689), - [anon_sym_long] = ACTIONS(689), - [anon_sym_char] = ACTIONS(689), - [anon_sym_float] = ACTIONS(689), - [anon_sym_double] = ACTIONS(689), - [sym_boolean_type] = ACTIONS(689), - [sym_void_type] = ACTIONS(689), - [sym_this] = ACTIONS(689), - [sym_super] = ACTIONS(689), + [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(692), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(691), - [sym_identifier] = ACTIONS(693), - [sym_decimal_integer_literal] = ACTIONS(693), - [sym_hex_integer_literal] = ACTIONS(693), - [sym_octal_integer_literal] = ACTIONS(693), - [sym_binary_integer_literal] = ACTIONS(691), - [sym_decimal_floating_point_literal] = ACTIONS(691), - [sym_hex_floating_point_literal] = ACTIONS(693), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_character_literal] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(691), - [anon_sym_RBRACE] = ACTIONS(691), - [sym_null_literal] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_final] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_new] = ACTIONS(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_case] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_assert] = ACTIONS(693), - [anon_sym_do] = ACTIONS(693), - [anon_sym_while] = ACTIONS(693), - [anon_sym_break] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(693), - [anon_sym_return] = ACTIONS(693), - [anon_sym_yield] = ACTIONS(693), - [anon_sym_synchronized] = ACTIONS(693), - [anon_sym_throw] = ACTIONS(693), - [anon_sym_try] = ACTIONS(693), - [anon_sym_if] = ACTIONS(693), - [anon_sym_else] = ACTIONS(693), - [anon_sym_for] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(693), - [anon_sym_open] = ACTIONS(693), - [anon_sym_module] = ACTIONS(693), - [anon_sym_static] = ACTIONS(693), - [anon_sym_with] = ACTIONS(693), - [anon_sym_package] = ACTIONS(693), - [anon_sym_import] = ACTIONS(693), - [anon_sym_enum] = ACTIONS(693), - [anon_sym_public] = ACTIONS(693), - [anon_sym_protected] = ACTIONS(693), - [anon_sym_private] = ACTIONS(693), - [anon_sym_abstract] = ACTIONS(693), - [anon_sym_strictfp] = ACTIONS(693), - [anon_sym_native] = ACTIONS(693), - [anon_sym_transient] = ACTIONS(693), - [anon_sym_volatile] = ACTIONS(693), - [anon_sym_sealed] = ACTIONS(693), - [anon_sym_non_DASHsealed] = ACTIONS(691), - [anon_sym_record] = ACTIONS(693), - [anon_sym_ATinterface] = ACTIONS(691), - [anon_sym_interface] = ACTIONS(693), - [anon_sym_byte] = ACTIONS(693), - [anon_sym_short] = ACTIONS(693), - [anon_sym_int] = ACTIONS(693), - [anon_sym_long] = ACTIONS(693), - [anon_sym_char] = ACTIONS(693), - [anon_sym_float] = ACTIONS(693), - [anon_sym_double] = ACTIONS(693), - [sym_boolean_type] = ACTIONS(693), - [sym_void_type] = ACTIONS(693), - [sym_this] = ACTIONS(693), - [sym_super] = ACTIONS(693), + [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(696), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(695), - [sym_identifier] = ACTIONS(697), - [sym_decimal_integer_literal] = ACTIONS(697), - [sym_hex_integer_literal] = ACTIONS(697), - [sym_octal_integer_literal] = ACTIONS(697), - [sym_binary_integer_literal] = ACTIONS(695), - [sym_decimal_floating_point_literal] = ACTIONS(695), - [sym_hex_floating_point_literal] = ACTIONS(697), - [sym_true] = ACTIONS(697), - [sym_false] = ACTIONS(697), - [sym_character_literal] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [sym_null_literal] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_final] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(695), - [anon_sym_DASH_DASH] = ACTIONS(695), - [anon_sym_new] = ACTIONS(697), - [anon_sym_class] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(697), - [anon_sym_default] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_assert] = ACTIONS(697), - [anon_sym_do] = ACTIONS(697), - [anon_sym_while] = ACTIONS(697), - [anon_sym_break] = ACTIONS(697), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_return] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_synchronized] = ACTIONS(697), - [anon_sym_throw] = ACTIONS(697), - [anon_sym_try] = ACTIONS(697), - [anon_sym_if] = ACTIONS(697), - [anon_sym_else] = ACTIONS(697), - [anon_sym_for] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_open] = ACTIONS(697), - [anon_sym_module] = ACTIONS(697), - [anon_sym_static] = ACTIONS(697), - [anon_sym_with] = ACTIONS(697), - [anon_sym_package] = ACTIONS(697), - [anon_sym_import] = ACTIONS(697), - [anon_sym_enum] = ACTIONS(697), - [anon_sym_public] = ACTIONS(697), - [anon_sym_protected] = ACTIONS(697), - [anon_sym_private] = ACTIONS(697), - [anon_sym_abstract] = ACTIONS(697), - [anon_sym_strictfp] = ACTIONS(697), - [anon_sym_native] = ACTIONS(697), - [anon_sym_transient] = ACTIONS(697), - [anon_sym_volatile] = ACTIONS(697), - [anon_sym_sealed] = ACTIONS(697), - [anon_sym_non_DASHsealed] = ACTIONS(695), - [anon_sym_record] = ACTIONS(697), - [anon_sym_ATinterface] = ACTIONS(695), - [anon_sym_interface] = ACTIONS(697), - [anon_sym_byte] = ACTIONS(697), - [anon_sym_short] = ACTIONS(697), - [anon_sym_int] = ACTIONS(697), - [anon_sym_long] = ACTIONS(697), - [anon_sym_char] = ACTIONS(697), - [anon_sym_float] = ACTIONS(697), - [anon_sym_double] = ACTIONS(697), - [sym_boolean_type] = ACTIONS(697), - [sym_void_type] = ACTIONS(697), - [sym_this] = ACTIONS(697), - [sym_super] = ACTIONS(697), + [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(700), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(699), - [sym_identifier] = ACTIONS(701), - [sym_decimal_integer_literal] = ACTIONS(701), - [sym_hex_integer_literal] = ACTIONS(701), - [sym_octal_integer_literal] = ACTIONS(701), - [sym_binary_integer_literal] = ACTIONS(699), - [sym_decimal_floating_point_literal] = ACTIONS(699), - [sym_hex_floating_point_literal] = ACTIONS(701), - [sym_true] = ACTIONS(701), - [sym_false] = ACTIONS(701), - [sym_character_literal] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(701), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [sym_null_literal] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_final] = ACTIONS(701), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_new] = ACTIONS(701), - [anon_sym_class] = ACTIONS(701), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_case] = ACTIONS(701), - [anon_sym_default] = ACTIONS(701), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_assert] = ACTIONS(701), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(701), - [anon_sym_break] = ACTIONS(701), - [anon_sym_continue] = ACTIONS(701), - [anon_sym_return] = ACTIONS(701), - [anon_sym_yield] = ACTIONS(701), - [anon_sym_synchronized] = ACTIONS(701), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(701), - [anon_sym_if] = ACTIONS(701), - [anon_sym_else] = ACTIONS(701), - [anon_sym_for] = ACTIONS(701), - [anon_sym_AT] = ACTIONS(701), - [anon_sym_open] = ACTIONS(701), - [anon_sym_module] = ACTIONS(701), - [anon_sym_static] = ACTIONS(701), - [anon_sym_with] = ACTIONS(701), - [anon_sym_package] = ACTIONS(701), - [anon_sym_import] = ACTIONS(701), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_public] = ACTIONS(701), - [anon_sym_protected] = ACTIONS(701), - [anon_sym_private] = ACTIONS(701), - [anon_sym_abstract] = ACTIONS(701), - [anon_sym_strictfp] = ACTIONS(701), - [anon_sym_native] = ACTIONS(701), - [anon_sym_transient] = ACTIONS(701), - [anon_sym_volatile] = ACTIONS(701), - [anon_sym_sealed] = ACTIONS(701), - [anon_sym_non_DASHsealed] = ACTIONS(699), - [anon_sym_record] = ACTIONS(701), - [anon_sym_ATinterface] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(701), - [anon_sym_byte] = ACTIONS(701), - [anon_sym_short] = ACTIONS(701), - [anon_sym_int] = ACTIONS(701), - [anon_sym_long] = ACTIONS(701), - [anon_sym_char] = ACTIONS(701), - [anon_sym_float] = ACTIONS(701), - [anon_sym_double] = ACTIONS(701), - [sym_boolean_type] = ACTIONS(701), - [sym_void_type] = ACTIONS(701), - [sym_this] = ACTIONS(701), - [sym_super] = ACTIONS(701), + [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(704), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(703), - [sym_identifier] = ACTIONS(705), - [sym_decimal_integer_literal] = ACTIONS(705), - [sym_hex_integer_literal] = ACTIONS(705), - [sym_octal_integer_literal] = ACTIONS(705), - [sym_binary_integer_literal] = ACTIONS(703), - [sym_decimal_floating_point_literal] = ACTIONS(703), - [sym_hex_floating_point_literal] = ACTIONS(705), - [sym_true] = ACTIONS(705), - [sym_false] = ACTIONS(705), - [sym_character_literal] = ACTIONS(703), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), - [anon_sym_RBRACE] = ACTIONS(703), - [sym_null_literal] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_final] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_TILDE] = ACTIONS(703), - [anon_sym_PLUS_PLUS] = ACTIONS(703), - [anon_sym_DASH_DASH] = ACTIONS(703), - [anon_sym_new] = ACTIONS(705), - [anon_sym_class] = ACTIONS(705), - [anon_sym_switch] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_case] = ACTIONS(705), - [anon_sym_default] = ACTIONS(705), - [anon_sym_SEMI] = ACTIONS(703), - [anon_sym_assert] = ACTIONS(705), - [anon_sym_do] = ACTIONS(705), - [anon_sym_while] = ACTIONS(705), - [anon_sym_break] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(705), - [anon_sym_return] = ACTIONS(705), - [anon_sym_yield] = ACTIONS(705), - [anon_sym_synchronized] = ACTIONS(705), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_try] = ACTIONS(705), - [anon_sym_if] = ACTIONS(705), - [anon_sym_else] = ACTIONS(705), - [anon_sym_for] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [anon_sym_open] = ACTIONS(705), - [anon_sym_module] = ACTIONS(705), - [anon_sym_static] = ACTIONS(705), - [anon_sym_with] = ACTIONS(705), - [anon_sym_package] = ACTIONS(705), - [anon_sym_import] = ACTIONS(705), - [anon_sym_enum] = ACTIONS(705), - [anon_sym_public] = ACTIONS(705), - [anon_sym_protected] = ACTIONS(705), - [anon_sym_private] = ACTIONS(705), - [anon_sym_abstract] = ACTIONS(705), - [anon_sym_strictfp] = ACTIONS(705), - [anon_sym_native] = ACTIONS(705), - [anon_sym_transient] = ACTIONS(705), - [anon_sym_volatile] = ACTIONS(705), - [anon_sym_sealed] = ACTIONS(705), - [anon_sym_non_DASHsealed] = ACTIONS(703), - [anon_sym_record] = ACTIONS(705), - [anon_sym_ATinterface] = ACTIONS(703), - [anon_sym_interface] = ACTIONS(705), - [anon_sym_byte] = ACTIONS(705), - [anon_sym_short] = ACTIONS(705), - [anon_sym_int] = ACTIONS(705), - [anon_sym_long] = ACTIONS(705), - [anon_sym_char] = ACTIONS(705), - [anon_sym_float] = ACTIONS(705), - [anon_sym_double] = ACTIONS(705), - [sym_boolean_type] = ACTIONS(705), - [sym_void_type] = ACTIONS(705), - [sym_this] = ACTIONS(705), - [sym_super] = ACTIONS(705), + [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(708), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(707), - [sym_identifier] = ACTIONS(709), - [sym_decimal_integer_literal] = ACTIONS(709), - [sym_hex_integer_literal] = ACTIONS(709), - [sym_octal_integer_literal] = ACTIONS(709), - [sym_binary_integer_literal] = ACTIONS(707), - [sym_decimal_floating_point_literal] = ACTIONS(707), - [sym_hex_floating_point_literal] = ACTIONS(709), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_character_literal] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), - [anon_sym_RBRACE] = ACTIONS(707), - [sym_null_literal] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_final] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_new] = ACTIONS(709), - [anon_sym_class] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_case] = ACTIONS(709), - [anon_sym_default] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_do] = ACTIONS(709), - [anon_sym_while] = ACTIONS(709), - [anon_sym_break] = ACTIONS(709), - [anon_sym_continue] = ACTIONS(709), - [anon_sym_return] = ACTIONS(709), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_synchronized] = ACTIONS(709), - [anon_sym_throw] = ACTIONS(709), - [anon_sym_try] = ACTIONS(709), - [anon_sym_if] = ACTIONS(709), - [anon_sym_else] = ACTIONS(709), - [anon_sym_for] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_open] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_static] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), - [anon_sym_package] = ACTIONS(709), - [anon_sym_import] = ACTIONS(709), - [anon_sym_enum] = ACTIONS(709), - [anon_sym_public] = ACTIONS(709), - [anon_sym_protected] = ACTIONS(709), - [anon_sym_private] = ACTIONS(709), - [anon_sym_abstract] = ACTIONS(709), - [anon_sym_strictfp] = ACTIONS(709), - [anon_sym_native] = ACTIONS(709), - [anon_sym_transient] = ACTIONS(709), - [anon_sym_volatile] = ACTIONS(709), - [anon_sym_sealed] = ACTIONS(709), - [anon_sym_non_DASHsealed] = ACTIONS(707), - [anon_sym_record] = ACTIONS(709), - [anon_sym_ATinterface] = ACTIONS(707), - [anon_sym_interface] = ACTIONS(709), - [anon_sym_byte] = ACTIONS(709), - [anon_sym_short] = ACTIONS(709), - [anon_sym_int] = ACTIONS(709), - [anon_sym_long] = ACTIONS(709), - [anon_sym_char] = ACTIONS(709), - [anon_sym_float] = ACTIONS(709), - [anon_sym_double] = ACTIONS(709), - [sym_boolean_type] = ACTIONS(709), - [sym_void_type] = ACTIONS(709), - [sym_this] = ACTIONS(709), - [sym_super] = ACTIONS(709), + [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(712), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(711), - [sym_identifier] = ACTIONS(713), - [sym_decimal_integer_literal] = ACTIONS(713), - [sym_hex_integer_literal] = ACTIONS(713), - [sym_octal_integer_literal] = ACTIONS(713), - [sym_binary_integer_literal] = ACTIONS(711), - [sym_decimal_floating_point_literal] = ACTIONS(711), - [sym_hex_floating_point_literal] = ACTIONS(713), - [sym_true] = ACTIONS(713), - [sym_false] = ACTIONS(713), - [sym_character_literal] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), - [anon_sym_RBRACE] = ACTIONS(711), - [sym_null_literal] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_final] = ACTIONS(713), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_new] = ACTIONS(713), - [anon_sym_class] = ACTIONS(713), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(711), - [anon_sym_case] = ACTIONS(713), - [anon_sym_default] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_assert] = ACTIONS(713), - [anon_sym_do] = ACTIONS(713), - [anon_sym_while] = ACTIONS(713), - [anon_sym_break] = ACTIONS(713), - [anon_sym_continue] = ACTIONS(713), - [anon_sym_return] = ACTIONS(713), - [anon_sym_yield] = ACTIONS(713), - [anon_sym_synchronized] = ACTIONS(713), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(713), - [anon_sym_if] = ACTIONS(713), - [anon_sym_else] = ACTIONS(713), - [anon_sym_for] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_open] = ACTIONS(713), - [anon_sym_module] = ACTIONS(713), - [anon_sym_static] = ACTIONS(713), - [anon_sym_with] = ACTIONS(713), - [anon_sym_package] = ACTIONS(713), - [anon_sym_import] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(713), - [anon_sym_public] = ACTIONS(713), - [anon_sym_protected] = ACTIONS(713), - [anon_sym_private] = ACTIONS(713), - [anon_sym_abstract] = ACTIONS(713), - [anon_sym_strictfp] = ACTIONS(713), - [anon_sym_native] = ACTIONS(713), - [anon_sym_transient] = ACTIONS(713), - [anon_sym_volatile] = ACTIONS(713), - [anon_sym_sealed] = ACTIONS(713), - [anon_sym_non_DASHsealed] = ACTIONS(711), - [anon_sym_record] = ACTIONS(713), - [anon_sym_ATinterface] = ACTIONS(711), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_byte] = ACTIONS(713), - [anon_sym_short] = ACTIONS(713), - [anon_sym_int] = ACTIONS(713), - [anon_sym_long] = ACTIONS(713), - [anon_sym_char] = ACTIONS(713), - [anon_sym_float] = ACTIONS(713), - [anon_sym_double] = ACTIONS(713), - [sym_boolean_type] = ACTIONS(713), - [sym_void_type] = ACTIONS(713), - [sym_this] = ACTIONS(713), - [sym_super] = ACTIONS(713), + [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(716), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(715), - [sym_identifier] = ACTIONS(717), - [sym_decimal_integer_literal] = ACTIONS(717), - [sym_hex_integer_literal] = ACTIONS(717), - [sym_octal_integer_literal] = ACTIONS(717), - [sym_binary_integer_literal] = ACTIONS(715), - [sym_decimal_floating_point_literal] = ACTIONS(715), - [sym_hex_floating_point_literal] = ACTIONS(717), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), - [sym_character_literal] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(717), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), - [anon_sym_RBRACE] = ACTIONS(715), - [sym_null_literal] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(717), - [anon_sym_final] = ACTIONS(717), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(715), - [anon_sym_PLUS_PLUS] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_new] = ACTIONS(717), - [anon_sym_class] = ACTIONS(717), - [anon_sym_switch] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_case] = ACTIONS(717), - [anon_sym_default] = ACTIONS(717), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_assert] = ACTIONS(717), - [anon_sym_do] = ACTIONS(717), - [anon_sym_while] = ACTIONS(717), - [anon_sym_break] = ACTIONS(717), - [anon_sym_continue] = ACTIONS(717), - [anon_sym_return] = ACTIONS(717), - [anon_sym_yield] = ACTIONS(717), - [anon_sym_synchronized] = ACTIONS(717), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_try] = ACTIONS(717), - [anon_sym_if] = ACTIONS(717), - [anon_sym_else] = ACTIONS(717), - [anon_sym_for] = ACTIONS(717), - [anon_sym_AT] = ACTIONS(717), - [anon_sym_open] = ACTIONS(717), - [anon_sym_module] = ACTIONS(717), - [anon_sym_static] = ACTIONS(717), - [anon_sym_with] = ACTIONS(717), - [anon_sym_package] = ACTIONS(717), - [anon_sym_import] = ACTIONS(717), - [anon_sym_enum] = ACTIONS(717), - [anon_sym_public] = ACTIONS(717), - [anon_sym_protected] = ACTIONS(717), - [anon_sym_private] = ACTIONS(717), - [anon_sym_abstract] = ACTIONS(717), - [anon_sym_strictfp] = ACTIONS(717), - [anon_sym_native] = ACTIONS(717), - [anon_sym_transient] = ACTIONS(717), - [anon_sym_volatile] = ACTIONS(717), - [anon_sym_sealed] = ACTIONS(717), - [anon_sym_non_DASHsealed] = ACTIONS(715), - [anon_sym_record] = ACTIONS(717), - [anon_sym_ATinterface] = ACTIONS(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_byte] = ACTIONS(717), - [anon_sym_short] = ACTIONS(717), - [anon_sym_int] = ACTIONS(717), - [anon_sym_long] = ACTIONS(717), - [anon_sym_char] = ACTIONS(717), - [anon_sym_float] = ACTIONS(717), - [anon_sym_double] = ACTIONS(717), - [sym_boolean_type] = ACTIONS(717), - [sym_void_type] = ACTIONS(717), - [sym_this] = ACTIONS(717), - [sym_super] = ACTIONS(717), + [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(720), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(719), - [sym_identifier] = ACTIONS(721), - [sym_decimal_integer_literal] = ACTIONS(721), - [sym_hex_integer_literal] = ACTIONS(721), - [sym_octal_integer_literal] = ACTIONS(721), - [sym_binary_integer_literal] = ACTIONS(719), - [sym_decimal_floating_point_literal] = ACTIONS(719), - [sym_hex_floating_point_literal] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_character_literal] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(719), - [sym_null_literal] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(719), - [anon_sym_LT] = ACTIONS(719), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_final] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_TILDE] = ACTIONS(719), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [anon_sym_new] = ACTIONS(721), - [anon_sym_class] = ACTIONS(721), - [anon_sym_switch] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_case] = ACTIONS(721), - [anon_sym_default] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(719), - [anon_sym_assert] = ACTIONS(721), - [anon_sym_do] = ACTIONS(721), - [anon_sym_while] = ACTIONS(721), - [anon_sym_break] = ACTIONS(721), - [anon_sym_continue] = ACTIONS(721), - [anon_sym_return] = ACTIONS(721), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_synchronized] = ACTIONS(721), - [anon_sym_throw] = ACTIONS(721), - [anon_sym_try] = ACTIONS(721), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(721), - [anon_sym_for] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(721), - [anon_sym_open] = ACTIONS(721), - [anon_sym_module] = ACTIONS(721), - [anon_sym_static] = ACTIONS(721), - [anon_sym_with] = ACTIONS(721), - [anon_sym_package] = ACTIONS(721), - [anon_sym_import] = ACTIONS(721), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_public] = ACTIONS(721), - [anon_sym_protected] = ACTIONS(721), - [anon_sym_private] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(721), - [anon_sym_strictfp] = ACTIONS(721), - [anon_sym_native] = ACTIONS(721), - [anon_sym_transient] = ACTIONS(721), - [anon_sym_volatile] = ACTIONS(721), - [anon_sym_sealed] = ACTIONS(721), - [anon_sym_non_DASHsealed] = ACTIONS(719), - [anon_sym_record] = ACTIONS(721), - [anon_sym_ATinterface] = ACTIONS(719), - [anon_sym_interface] = ACTIONS(721), - [anon_sym_byte] = ACTIONS(721), - [anon_sym_short] = ACTIONS(721), - [anon_sym_int] = ACTIONS(721), - [anon_sym_long] = ACTIONS(721), - [anon_sym_char] = ACTIONS(721), - [anon_sym_float] = ACTIONS(721), - [anon_sym_double] = ACTIONS(721), - [sym_boolean_type] = ACTIONS(721), - [sym_void_type] = ACTIONS(721), - [sym_this] = ACTIONS(721), - [sym_super] = ACTIONS(721), + [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(724), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(723), - [sym_identifier] = ACTIONS(725), - [sym_decimal_integer_literal] = ACTIONS(725), - [sym_hex_integer_literal] = ACTIONS(725), - [sym_octal_integer_literal] = ACTIONS(725), - [sym_binary_integer_literal] = ACTIONS(723), - [sym_decimal_floating_point_literal] = ACTIONS(723), - [sym_hex_floating_point_literal] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_character_literal] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(723), - [sym_null_literal] = ACTIONS(725), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(725), - [anon_sym_final] = ACTIONS(725), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(723), - [anon_sym_new] = ACTIONS(725), - [anon_sym_class] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(723), - [anon_sym_assert] = ACTIONS(725), - [anon_sym_do] = ACTIONS(725), - [anon_sym_while] = ACTIONS(725), - [anon_sym_break] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(725), - [anon_sym_return] = ACTIONS(725), - [anon_sym_yield] = ACTIONS(725), - [anon_sym_synchronized] = ACTIONS(725), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(725), - [anon_sym_if] = ACTIONS(725), - [anon_sym_else] = ACTIONS(725), - [anon_sym_for] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(725), - [anon_sym_open] = ACTIONS(725), - [anon_sym_module] = ACTIONS(725), - [anon_sym_static] = ACTIONS(725), - [anon_sym_with] = ACTIONS(725), - [anon_sym_package] = ACTIONS(725), - [anon_sym_import] = ACTIONS(725), - [anon_sym_enum] = ACTIONS(725), - [anon_sym_public] = ACTIONS(725), - [anon_sym_protected] = ACTIONS(725), - [anon_sym_private] = ACTIONS(725), - [anon_sym_abstract] = ACTIONS(725), - [anon_sym_strictfp] = ACTIONS(725), - [anon_sym_native] = ACTIONS(725), - [anon_sym_transient] = ACTIONS(725), - [anon_sym_volatile] = ACTIONS(725), - [anon_sym_sealed] = ACTIONS(725), - [anon_sym_non_DASHsealed] = ACTIONS(723), - [anon_sym_record] = ACTIONS(725), - [anon_sym_ATinterface] = ACTIONS(723), - [anon_sym_interface] = ACTIONS(725), - [anon_sym_byte] = ACTIONS(725), - [anon_sym_short] = ACTIONS(725), - [anon_sym_int] = ACTIONS(725), - [anon_sym_long] = ACTIONS(725), - [anon_sym_char] = ACTIONS(725), - [anon_sym_float] = ACTIONS(725), - [anon_sym_double] = ACTIONS(725), - [sym_boolean_type] = ACTIONS(725), - [sym_void_type] = ACTIONS(725), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), + [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(728), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(727), - [sym_identifier] = ACTIONS(729), - [sym_decimal_integer_literal] = ACTIONS(729), - [sym_hex_integer_literal] = ACTIONS(729), - [sym_octal_integer_literal] = ACTIONS(729), - [sym_binary_integer_literal] = ACTIONS(727), - [sym_decimal_floating_point_literal] = ACTIONS(727), - [sym_hex_floating_point_literal] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_character_literal] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(727), - [sym_null_literal] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_final] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_new] = ACTIONS(729), - [anon_sym_class] = ACTIONS(729), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_assert] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_yield] = ACTIONS(729), - [anon_sym_synchronized] = ACTIONS(729), - [anon_sym_throw] = ACTIONS(729), - [anon_sym_try] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_open] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_static] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), - [anon_sym_package] = ACTIONS(729), - [anon_sym_import] = ACTIONS(729), - [anon_sym_enum] = ACTIONS(729), - [anon_sym_public] = ACTIONS(729), - [anon_sym_protected] = ACTIONS(729), - [anon_sym_private] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(729), - [anon_sym_strictfp] = ACTIONS(729), - [anon_sym_native] = ACTIONS(729), - [anon_sym_transient] = ACTIONS(729), - [anon_sym_volatile] = ACTIONS(729), - [anon_sym_sealed] = ACTIONS(729), - [anon_sym_non_DASHsealed] = ACTIONS(727), - [anon_sym_record] = ACTIONS(729), - [anon_sym_ATinterface] = ACTIONS(727), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_byte] = ACTIONS(729), - [anon_sym_short] = ACTIONS(729), - [anon_sym_int] = ACTIONS(729), - [anon_sym_long] = ACTIONS(729), - [anon_sym_char] = ACTIONS(729), - [anon_sym_float] = ACTIONS(729), - [anon_sym_double] = ACTIONS(729), - [sym_boolean_type] = ACTIONS(729), - [sym_void_type] = ACTIONS(729), - [sym_this] = ACTIONS(729), - [sym_super] = ACTIONS(729), + [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(732), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(731), - [sym_identifier] = ACTIONS(733), - [sym_decimal_integer_literal] = ACTIONS(733), - [sym_hex_integer_literal] = ACTIONS(733), - [sym_octal_integer_literal] = ACTIONS(733), - [sym_binary_integer_literal] = ACTIONS(731), - [sym_decimal_floating_point_literal] = ACTIONS(731), - [sym_hex_floating_point_literal] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_character_literal] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(731), - [sym_null_literal] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_final] = ACTIONS(733), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_PLUS_PLUS] = ACTIONS(731), - [anon_sym_DASH_DASH] = ACTIONS(731), - [anon_sym_new] = ACTIONS(733), - [anon_sym_class] = ACTIONS(733), - [anon_sym_switch] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_case] = ACTIONS(733), - [anon_sym_default] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_do] = ACTIONS(733), - [anon_sym_while] = ACTIONS(733), - [anon_sym_break] = ACTIONS(733), - [anon_sym_continue] = ACTIONS(733), - [anon_sym_return] = ACTIONS(733), - [anon_sym_yield] = ACTIONS(733), - [anon_sym_synchronized] = ACTIONS(733), - [anon_sym_throw] = ACTIONS(733), - [anon_sym_try] = ACTIONS(733), - [anon_sym_if] = ACTIONS(733), - [anon_sym_else] = ACTIONS(733), - [anon_sym_for] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym_open] = ACTIONS(733), - [anon_sym_module] = ACTIONS(733), - [anon_sym_static] = ACTIONS(733), - [anon_sym_with] = ACTIONS(733), - [anon_sym_package] = ACTIONS(733), - [anon_sym_import] = ACTIONS(733), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_public] = ACTIONS(733), - [anon_sym_protected] = ACTIONS(733), - [anon_sym_private] = ACTIONS(733), - [anon_sym_abstract] = ACTIONS(733), - [anon_sym_strictfp] = ACTIONS(733), - [anon_sym_native] = ACTIONS(733), - [anon_sym_transient] = ACTIONS(733), - [anon_sym_volatile] = ACTIONS(733), - [anon_sym_sealed] = ACTIONS(733), - [anon_sym_non_DASHsealed] = ACTIONS(731), - [anon_sym_record] = ACTIONS(733), - [anon_sym_ATinterface] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(733), - [anon_sym_byte] = ACTIONS(733), - [anon_sym_short] = ACTIONS(733), - [anon_sym_int] = ACTIONS(733), - [anon_sym_long] = ACTIONS(733), - [anon_sym_char] = ACTIONS(733), - [anon_sym_float] = ACTIONS(733), - [anon_sym_double] = ACTIONS(733), - [sym_boolean_type] = ACTIONS(733), - [sym_void_type] = ACTIONS(733), - [sym_this] = ACTIONS(733), - [sym_super] = ACTIONS(733), + [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(736), + [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), + [anon_sym_RBRACE] = 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_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_with] = 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), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(735), - [sym_identifier] = ACTIONS(737), - [sym_decimal_integer_literal] = ACTIONS(737), - [sym_hex_integer_literal] = ACTIONS(737), - [sym_octal_integer_literal] = ACTIONS(737), - [sym_binary_integer_literal] = ACTIONS(735), - [sym_decimal_floating_point_literal] = ACTIONS(735), - [sym_hex_floating_point_literal] = ACTIONS(737), - [sym_true] = ACTIONS(737), - [sym_false] = ACTIONS(737), - [sym_character_literal] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [sym_null_literal] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_final] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_new] = ACTIONS(737), - [anon_sym_class] = ACTIONS(737), - [anon_sym_switch] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_case] = ACTIONS(737), - [anon_sym_default] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_assert] = ACTIONS(737), - [anon_sym_do] = ACTIONS(737), - [anon_sym_while] = ACTIONS(737), - [anon_sym_break] = ACTIONS(737), - [anon_sym_continue] = ACTIONS(737), - [anon_sym_return] = ACTIONS(737), - [anon_sym_yield] = ACTIONS(737), - [anon_sym_synchronized] = ACTIONS(737), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_try] = ACTIONS(737), - [anon_sym_if] = ACTIONS(737), - [anon_sym_else] = ACTIONS(737), - [anon_sym_for] = ACTIONS(737), - [anon_sym_AT] = ACTIONS(737), - [anon_sym_open] = ACTIONS(737), - [anon_sym_module] = ACTIONS(737), - [anon_sym_static] = ACTIONS(737), - [anon_sym_with] = ACTIONS(737), - [anon_sym_package] = ACTIONS(737), - [anon_sym_import] = ACTIONS(737), - [anon_sym_enum] = ACTIONS(737), - [anon_sym_public] = ACTIONS(737), - [anon_sym_protected] = ACTIONS(737), - [anon_sym_private] = ACTIONS(737), - [anon_sym_abstract] = ACTIONS(737), - [anon_sym_strictfp] = ACTIONS(737), - [anon_sym_native] = ACTIONS(737), - [anon_sym_transient] = ACTIONS(737), - [anon_sym_volatile] = ACTIONS(737), - [anon_sym_sealed] = ACTIONS(737), - [anon_sym_non_DASHsealed] = ACTIONS(735), - [anon_sym_record] = ACTIONS(737), - [anon_sym_ATinterface] = ACTIONS(735), - [anon_sym_interface] = ACTIONS(737), - [anon_sym_byte] = ACTIONS(737), - [anon_sym_short] = ACTIONS(737), - [anon_sym_int] = ACTIONS(737), - [anon_sym_long] = ACTIONS(737), - [anon_sym_char] = ACTIONS(737), - [anon_sym_float] = ACTIONS(737), - [anon_sym_double] = ACTIONS(737), - [sym_boolean_type] = ACTIONS(737), - [sym_void_type] = ACTIONS(737), - [sym_this] = ACTIONS(737), - [sym_super] = ACTIONS(737), + [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(740), + [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), + [anon_sym_RBRACE] = ACTIONS(738), + [sym_null_literal] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_LT] = 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_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_with] = 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), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(739), - [sym_identifier] = ACTIONS(741), - [sym_decimal_integer_literal] = ACTIONS(741), - [sym_hex_integer_literal] = ACTIONS(741), - [sym_octal_integer_literal] = ACTIONS(741), - [sym_binary_integer_literal] = ACTIONS(739), - [sym_decimal_floating_point_literal] = ACTIONS(739), - [sym_hex_floating_point_literal] = ACTIONS(741), - [sym_true] = ACTIONS(741), - [sym_false] = ACTIONS(741), - [sym_character_literal] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [sym_null_literal] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_final] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_PLUS_PLUS] = ACTIONS(739), - [anon_sym_DASH_DASH] = ACTIONS(739), - [anon_sym_new] = ACTIONS(741), - [anon_sym_class] = ACTIONS(741), - [anon_sym_switch] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_case] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_synchronized] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(741), - [anon_sym_try] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_else] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_open] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_with] = ACTIONS(741), - [anon_sym_package] = ACTIONS(741), - [anon_sym_import] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_public] = ACTIONS(741), - [anon_sym_protected] = ACTIONS(741), - [anon_sym_private] = ACTIONS(741), - [anon_sym_abstract] = ACTIONS(741), - [anon_sym_strictfp] = ACTIONS(741), - [anon_sym_native] = ACTIONS(741), - [anon_sym_transient] = ACTIONS(741), - [anon_sym_volatile] = ACTIONS(741), - [anon_sym_sealed] = ACTIONS(741), - [anon_sym_non_DASHsealed] = ACTIONS(739), - [anon_sym_record] = ACTIONS(741), - [anon_sym_ATinterface] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(741), - [anon_sym_byte] = ACTIONS(741), - [anon_sym_short] = ACTIONS(741), - [anon_sym_int] = ACTIONS(741), - [anon_sym_long] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_float] = ACTIONS(741), - [anon_sym_double] = ACTIONS(741), - [sym_boolean_type] = ACTIONS(741), - [sym_void_type] = ACTIONS(741), - [sym_this] = ACTIONS(741), - [sym_super] = ACTIONS(741), + [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(744), + [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), + [anon_sym_RBRACE] = ACTIONS(742), + [sym_null_literal] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_LT] = 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_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_with] = 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(743), - [sym_identifier] = ACTIONS(745), - [sym_decimal_integer_literal] = ACTIONS(745), - [sym_hex_integer_literal] = ACTIONS(745), - [sym_octal_integer_literal] = ACTIONS(745), - [sym_binary_integer_literal] = ACTIONS(743), - [sym_decimal_floating_point_literal] = ACTIONS(743), - [sym_hex_floating_point_literal] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [sym_character_literal] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [sym_null_literal] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_final] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_new] = ACTIONS(745), - [anon_sym_class] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_assert] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_synchronized] = ACTIONS(745), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_try] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_else] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_open] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_with] = ACTIONS(745), - [anon_sym_package] = ACTIONS(745), - [anon_sym_import] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_public] = ACTIONS(745), - [anon_sym_protected] = ACTIONS(745), - [anon_sym_private] = ACTIONS(745), - [anon_sym_abstract] = ACTIONS(745), - [anon_sym_strictfp] = ACTIONS(745), - [anon_sym_native] = ACTIONS(745), - [anon_sym_transient] = ACTIONS(745), - [anon_sym_volatile] = ACTIONS(745), - [anon_sym_sealed] = ACTIONS(745), - [anon_sym_non_DASHsealed] = ACTIONS(743), - [anon_sym_record] = ACTIONS(745), - [anon_sym_ATinterface] = ACTIONS(743), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_byte] = ACTIONS(745), - [anon_sym_short] = ACTIONS(745), - [anon_sym_int] = ACTIONS(745), - [anon_sym_long] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_float] = ACTIONS(745), - [anon_sym_double] = ACTIONS(745), - [sym_boolean_type] = ACTIONS(745), - [sym_void_type] = ACTIONS(745), - [sym_this] = ACTIONS(745), - [sym_super] = ACTIONS(745), + [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(748), + [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), + [anon_sym_RBRACE] = ACTIONS(746), + [sym_null_literal] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_LT] = 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_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_with] = 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(747), - [sym_identifier] = ACTIONS(749), - [sym_decimal_integer_literal] = ACTIONS(749), - [sym_hex_integer_literal] = ACTIONS(749), - [sym_octal_integer_literal] = ACTIONS(749), - [sym_binary_integer_literal] = ACTIONS(747), - [sym_decimal_floating_point_literal] = ACTIONS(747), - [sym_hex_floating_point_literal] = ACTIONS(749), - [sym_true] = ACTIONS(749), - [sym_false] = ACTIONS(749), - [sym_character_literal] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [sym_null_literal] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_final] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(747), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_PLUS_PLUS] = ACTIONS(747), - [anon_sym_DASH_DASH] = ACTIONS(747), - [anon_sym_new] = ACTIONS(749), - [anon_sym_class] = ACTIONS(749), - [anon_sym_switch] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_case] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_assert] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_yield] = ACTIONS(749), - [anon_sym_synchronized] = ACTIONS(749), - [anon_sym_throw] = ACTIONS(749), - [anon_sym_try] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_else] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_AT] = ACTIONS(749), - [anon_sym_open] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_with] = ACTIONS(749), - [anon_sym_package] = ACTIONS(749), - [anon_sym_import] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_public] = ACTIONS(749), - [anon_sym_protected] = ACTIONS(749), - [anon_sym_private] = ACTIONS(749), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_strictfp] = ACTIONS(749), - [anon_sym_native] = ACTIONS(749), - [anon_sym_transient] = ACTIONS(749), - [anon_sym_volatile] = ACTIONS(749), - [anon_sym_sealed] = ACTIONS(749), - [anon_sym_non_DASHsealed] = ACTIONS(747), - [anon_sym_record] = ACTIONS(749), - [anon_sym_ATinterface] = ACTIONS(747), - [anon_sym_interface] = ACTIONS(749), - [anon_sym_byte] = ACTIONS(749), - [anon_sym_short] = ACTIONS(749), - [anon_sym_int] = ACTIONS(749), - [anon_sym_long] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_float] = ACTIONS(749), - [anon_sym_double] = ACTIONS(749), - [sym_boolean_type] = ACTIONS(749), - [sym_void_type] = ACTIONS(749), - [sym_this] = ACTIONS(749), - [sym_super] = ACTIONS(749), + [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(752), + [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), + [anon_sym_RBRACE] = ACTIONS(750), + [sym_null_literal] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_LT] = 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_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_with] = 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(751), - [sym_identifier] = ACTIONS(753), - [sym_decimal_integer_literal] = ACTIONS(753), - [sym_hex_integer_literal] = ACTIONS(753), - [sym_octal_integer_literal] = ACTIONS(753), - [sym_binary_integer_literal] = ACTIONS(751), - [sym_decimal_floating_point_literal] = ACTIONS(751), - [sym_hex_floating_point_literal] = ACTIONS(753), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_character_literal] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [sym_null_literal] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_final] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(751), - [anon_sym_PLUS_PLUS] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(751), - [anon_sym_new] = ACTIONS(753), - [anon_sym_class] = ACTIONS(753), - [anon_sym_switch] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_case] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_assert] = ACTIONS(753), - [anon_sym_do] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_yield] = ACTIONS(753), - [anon_sym_synchronized] = ACTIONS(753), - [anon_sym_throw] = ACTIONS(753), - [anon_sym_try] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_else] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(753), - [anon_sym_open] = ACTIONS(753), - [anon_sym_module] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_with] = ACTIONS(753), - [anon_sym_package] = ACTIONS(753), - [anon_sym_import] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_public] = ACTIONS(753), - [anon_sym_protected] = ACTIONS(753), - [anon_sym_private] = ACTIONS(753), - [anon_sym_abstract] = ACTIONS(753), - [anon_sym_strictfp] = ACTIONS(753), - [anon_sym_native] = ACTIONS(753), - [anon_sym_transient] = ACTIONS(753), - [anon_sym_volatile] = ACTIONS(753), - [anon_sym_sealed] = ACTIONS(753), - [anon_sym_non_DASHsealed] = ACTIONS(751), - [anon_sym_record] = ACTIONS(753), - [anon_sym_ATinterface] = ACTIONS(751), - [anon_sym_interface] = ACTIONS(753), - [anon_sym_byte] = ACTIONS(753), - [anon_sym_short] = ACTIONS(753), - [anon_sym_int] = ACTIONS(753), - [anon_sym_long] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_float] = ACTIONS(753), - [anon_sym_double] = ACTIONS(753), - [sym_boolean_type] = ACTIONS(753), - [sym_void_type] = ACTIONS(753), - [sym_this] = ACTIONS(753), - [sym_super] = ACTIONS(753), + [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(756), + [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), + [anon_sym_RBRACE] = ACTIONS(754), + [sym_null_literal] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_LT] = 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_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_with] = 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(755), - [sym_identifier] = ACTIONS(757), - [sym_decimal_integer_literal] = ACTIONS(757), - [sym_hex_integer_literal] = ACTIONS(757), - [sym_octal_integer_literal] = ACTIONS(757), - [sym_binary_integer_literal] = ACTIONS(755), - [sym_decimal_floating_point_literal] = ACTIONS(755), - [sym_hex_floating_point_literal] = ACTIONS(757), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_character_literal] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(757), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [sym_null_literal] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_final] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_new] = ACTIONS(757), - [anon_sym_class] = ACTIONS(757), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_case] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_assert] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_yield] = ACTIONS(757), - [anon_sym_synchronized] = ACTIONS(757), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_try] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_else] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_static] = ACTIONS(757), - [anon_sym_with] = ACTIONS(757), - [anon_sym_package] = ACTIONS(757), - [anon_sym_import] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(757), - [anon_sym_public] = ACTIONS(757), - [anon_sym_protected] = ACTIONS(757), - [anon_sym_private] = ACTIONS(757), - [anon_sym_abstract] = ACTIONS(757), - [anon_sym_strictfp] = ACTIONS(757), - [anon_sym_native] = ACTIONS(757), - [anon_sym_transient] = ACTIONS(757), - [anon_sym_volatile] = ACTIONS(757), - [anon_sym_sealed] = ACTIONS(757), - [anon_sym_non_DASHsealed] = ACTIONS(755), - [anon_sym_record] = ACTIONS(757), - [anon_sym_ATinterface] = ACTIONS(755), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_byte] = ACTIONS(757), - [anon_sym_short] = ACTIONS(757), - [anon_sym_int] = ACTIONS(757), - [anon_sym_long] = ACTIONS(757), - [anon_sym_char] = ACTIONS(757), - [anon_sym_float] = ACTIONS(757), - [anon_sym_double] = ACTIONS(757), - [sym_boolean_type] = ACTIONS(757), - [sym_void_type] = ACTIONS(757), - [sym_this] = ACTIONS(757), - [sym_super] = ACTIONS(757), + [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(760), + [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), + [anon_sym_RBRACE] = ACTIONS(758), + [sym_null_literal] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_LT] = 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_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_with] = 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(759), - [sym_identifier] = ACTIONS(761), - [sym_decimal_integer_literal] = ACTIONS(761), - [sym_hex_integer_literal] = ACTIONS(761), - [sym_octal_integer_literal] = ACTIONS(761), - [sym_binary_integer_literal] = ACTIONS(759), - [sym_decimal_floating_point_literal] = ACTIONS(759), - [sym_hex_floating_point_literal] = ACTIONS(761), - [sym_true] = ACTIONS(761), - [sym_false] = ACTIONS(761), - [sym_character_literal] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(761), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [sym_null_literal] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(761), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_final] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(759), - [anon_sym_new] = ACTIONS(761), - [anon_sym_class] = ACTIONS(761), - [anon_sym_switch] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_case] = ACTIONS(761), - [anon_sym_default] = ACTIONS(761), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_assert] = ACTIONS(761), - [anon_sym_do] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_break] = ACTIONS(761), - [anon_sym_continue] = ACTIONS(761), - [anon_sym_return] = ACTIONS(761), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_synchronized] = ACTIONS(761), - [anon_sym_throw] = ACTIONS(761), - [anon_sym_try] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_AT] = ACTIONS(761), - [anon_sym_open] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_static] = ACTIONS(761), - [anon_sym_with] = ACTIONS(761), - [anon_sym_package] = ACTIONS(761), - [anon_sym_import] = ACTIONS(761), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_abstract] = ACTIONS(761), - [anon_sym_strictfp] = ACTIONS(761), - [anon_sym_native] = ACTIONS(761), - [anon_sym_transient] = ACTIONS(761), - [anon_sym_volatile] = ACTIONS(761), - [anon_sym_sealed] = ACTIONS(761), - [anon_sym_non_DASHsealed] = ACTIONS(759), - [anon_sym_record] = ACTIONS(761), - [anon_sym_ATinterface] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(761), - [anon_sym_byte] = ACTIONS(761), - [anon_sym_short] = ACTIONS(761), - [anon_sym_int] = ACTIONS(761), - [anon_sym_long] = ACTIONS(761), - [anon_sym_char] = ACTIONS(761), - [anon_sym_float] = ACTIONS(761), - [anon_sym_double] = ACTIONS(761), - [sym_boolean_type] = ACTIONS(761), - [sym_void_type] = ACTIONS(761), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(761), + [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(764), + [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), + [anon_sym_RBRACE] = ACTIONS(762), + [sym_null_literal] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_LT] = 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_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_with] = 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(763), - [sym_identifier] = ACTIONS(765), - [sym_decimal_integer_literal] = ACTIONS(765), - [sym_hex_integer_literal] = ACTIONS(765), - [sym_octal_integer_literal] = ACTIONS(765), - [sym_binary_integer_literal] = ACTIONS(763), - [sym_decimal_floating_point_literal] = ACTIONS(763), - [sym_hex_floating_point_literal] = ACTIONS(765), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_character_literal] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [sym_null_literal] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_final] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(763), - [anon_sym_DASH_DASH] = ACTIONS(763), - [anon_sym_new] = ACTIONS(765), - [anon_sym_class] = ACTIONS(765), - [anon_sym_switch] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_case] = ACTIONS(765), - [anon_sym_default] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_assert] = ACTIONS(765), - [anon_sym_do] = ACTIONS(765), - [anon_sym_while] = ACTIONS(765), - [anon_sym_break] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(765), - [anon_sym_return] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(765), - [anon_sym_synchronized] = ACTIONS(765), - [anon_sym_throw] = ACTIONS(765), - [anon_sym_try] = ACTIONS(765), - [anon_sym_if] = ACTIONS(765), - [anon_sym_else] = ACTIONS(765), - [anon_sym_for] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(765), - [anon_sym_open] = ACTIONS(765), - [anon_sym_module] = ACTIONS(765), - [anon_sym_static] = ACTIONS(765), - [anon_sym_with] = ACTIONS(765), - [anon_sym_package] = ACTIONS(765), - [anon_sym_import] = ACTIONS(765), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_public] = ACTIONS(765), - [anon_sym_protected] = ACTIONS(765), - [anon_sym_private] = ACTIONS(765), - [anon_sym_abstract] = ACTIONS(765), - [anon_sym_strictfp] = ACTIONS(765), - [anon_sym_native] = ACTIONS(765), - [anon_sym_transient] = ACTIONS(765), - [anon_sym_volatile] = ACTIONS(765), - [anon_sym_sealed] = ACTIONS(765), - [anon_sym_non_DASHsealed] = ACTIONS(763), - [anon_sym_record] = ACTIONS(765), - [anon_sym_ATinterface] = ACTIONS(763), - [anon_sym_interface] = ACTIONS(765), - [anon_sym_byte] = ACTIONS(765), - [anon_sym_short] = ACTIONS(765), - [anon_sym_int] = ACTIONS(765), - [anon_sym_long] = ACTIONS(765), - [anon_sym_char] = ACTIONS(765), - [anon_sym_float] = ACTIONS(765), - [anon_sym_double] = ACTIONS(765), - [sym_boolean_type] = ACTIONS(765), - [sym_void_type] = ACTIONS(765), - [sym_this] = ACTIONS(765), - [sym_super] = ACTIONS(765), + [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(768), + [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), + [anon_sym_RBRACE] = ACTIONS(766), + [sym_null_literal] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_LT] = 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_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_with] = 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(767), - [sym_identifier] = ACTIONS(769), - [sym_decimal_integer_literal] = ACTIONS(769), - [sym_hex_integer_literal] = ACTIONS(769), - [sym_octal_integer_literal] = ACTIONS(769), - [sym_binary_integer_literal] = ACTIONS(767), - [sym_decimal_floating_point_literal] = ACTIONS(767), - [sym_hex_floating_point_literal] = ACTIONS(769), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_character_literal] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [sym_null_literal] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_final] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(767), - [anon_sym_DASH_DASH] = ACTIONS(767), - [anon_sym_new] = ACTIONS(769), - [anon_sym_class] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_case] = ACTIONS(769), - [anon_sym_default] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_do] = ACTIONS(769), - [anon_sym_while] = ACTIONS(769), - [anon_sym_break] = ACTIONS(769), - [anon_sym_continue] = ACTIONS(769), - [anon_sym_return] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(769), - [anon_sym_synchronized] = ACTIONS(769), - [anon_sym_throw] = ACTIONS(769), - [anon_sym_try] = ACTIONS(769), - [anon_sym_if] = ACTIONS(769), - [anon_sym_else] = ACTIONS(769), - [anon_sym_for] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym_open] = ACTIONS(769), - [anon_sym_module] = ACTIONS(769), - [anon_sym_static] = ACTIONS(769), - [anon_sym_with] = ACTIONS(769), - [anon_sym_package] = ACTIONS(769), - [anon_sym_import] = ACTIONS(769), - [anon_sym_enum] = ACTIONS(769), - [anon_sym_public] = ACTIONS(769), - [anon_sym_protected] = ACTIONS(769), - [anon_sym_private] = ACTIONS(769), - [anon_sym_abstract] = ACTIONS(769), - [anon_sym_strictfp] = ACTIONS(769), - [anon_sym_native] = ACTIONS(769), - [anon_sym_transient] = ACTIONS(769), - [anon_sym_volatile] = ACTIONS(769), - [anon_sym_sealed] = ACTIONS(769), - [anon_sym_non_DASHsealed] = ACTIONS(767), - [anon_sym_record] = ACTIONS(769), - [anon_sym_ATinterface] = ACTIONS(767), - [anon_sym_interface] = ACTIONS(769), - [anon_sym_byte] = ACTIONS(769), - [anon_sym_short] = ACTIONS(769), - [anon_sym_int] = ACTIONS(769), - [anon_sym_long] = ACTIONS(769), - [anon_sym_char] = ACTIONS(769), - [anon_sym_float] = ACTIONS(769), - [anon_sym_double] = ACTIONS(769), - [sym_boolean_type] = ACTIONS(769), - [sym_void_type] = ACTIONS(769), - [sym_this] = ACTIONS(769), - [sym_super] = ACTIONS(769), + [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(772), + [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), + [anon_sym_RBRACE] = ACTIONS(770), + [sym_null_literal] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(770), + [anon_sym_LT] = 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_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_with] = 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(771), - [sym_identifier] = ACTIONS(773), - [sym_decimal_integer_literal] = ACTIONS(773), - [sym_hex_integer_literal] = ACTIONS(773), - [sym_octal_integer_literal] = ACTIONS(773), - [sym_binary_integer_literal] = ACTIONS(771), - [sym_decimal_floating_point_literal] = ACTIONS(771), - [sym_hex_floating_point_literal] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_character_literal] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [sym_null_literal] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(773), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_final] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_PLUS_PLUS] = ACTIONS(771), - [anon_sym_DASH_DASH] = ACTIONS(771), - [anon_sym_new] = ACTIONS(773), - [anon_sym_class] = ACTIONS(773), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_case] = ACTIONS(773), - [anon_sym_default] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_assert] = ACTIONS(773), - [anon_sym_do] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_break] = ACTIONS(773), - [anon_sym_continue] = ACTIONS(773), - [anon_sym_return] = ACTIONS(773), - [anon_sym_yield] = ACTIONS(773), - [anon_sym_synchronized] = ACTIONS(773), - [anon_sym_throw] = ACTIONS(773), - [anon_sym_try] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_else] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym_open] = ACTIONS(773), - [anon_sym_module] = ACTIONS(773), - [anon_sym_static] = ACTIONS(773), - [anon_sym_with] = ACTIONS(773), - [anon_sym_package] = ACTIONS(773), - [anon_sym_import] = ACTIONS(773), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_public] = ACTIONS(773), - [anon_sym_protected] = ACTIONS(773), - [anon_sym_private] = ACTIONS(773), - [anon_sym_abstract] = ACTIONS(773), - [anon_sym_strictfp] = ACTIONS(773), - [anon_sym_native] = ACTIONS(773), - [anon_sym_transient] = ACTIONS(773), - [anon_sym_volatile] = ACTIONS(773), - [anon_sym_sealed] = ACTIONS(773), - [anon_sym_non_DASHsealed] = ACTIONS(771), - [anon_sym_record] = ACTIONS(773), - [anon_sym_ATinterface] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_byte] = ACTIONS(773), - [anon_sym_short] = ACTIONS(773), - [anon_sym_int] = ACTIONS(773), - [anon_sym_long] = ACTIONS(773), - [anon_sym_char] = ACTIONS(773), - [anon_sym_float] = ACTIONS(773), - [anon_sym_double] = ACTIONS(773), - [sym_boolean_type] = ACTIONS(773), - [sym_void_type] = ACTIONS(773), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(773), + [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(776), + [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), + [anon_sym_RBRACE] = ACTIONS(774), + [sym_null_literal] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_LT] = 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_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_with] = 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(775), - [sym_identifier] = ACTIONS(777), - [sym_decimal_integer_literal] = ACTIONS(777), - [sym_hex_integer_literal] = ACTIONS(777), - [sym_octal_integer_literal] = ACTIONS(777), - [sym_binary_integer_literal] = ACTIONS(775), - [sym_decimal_floating_point_literal] = ACTIONS(775), - [sym_hex_floating_point_literal] = ACTIONS(777), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_character_literal] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [sym_null_literal] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_final] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(775), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_new] = ACTIONS(777), - [anon_sym_class] = ACTIONS(777), - [anon_sym_switch] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_case] = ACTIONS(777), - [anon_sym_default] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_assert] = ACTIONS(777), - [anon_sym_do] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_yield] = ACTIONS(777), - [anon_sym_synchronized] = ACTIONS(777), - [anon_sym_throw] = ACTIONS(777), - [anon_sym_try] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_else] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [anon_sym_open] = ACTIONS(777), - [anon_sym_module] = ACTIONS(777), - [anon_sym_static] = ACTIONS(777), - [anon_sym_with] = ACTIONS(777), - [anon_sym_package] = ACTIONS(777), - [anon_sym_import] = ACTIONS(777), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_public] = ACTIONS(777), - [anon_sym_protected] = ACTIONS(777), - [anon_sym_private] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(777), - [anon_sym_strictfp] = ACTIONS(777), - [anon_sym_native] = ACTIONS(777), - [anon_sym_transient] = ACTIONS(777), - [anon_sym_volatile] = ACTIONS(777), - [anon_sym_sealed] = ACTIONS(777), - [anon_sym_non_DASHsealed] = ACTIONS(775), - [anon_sym_record] = ACTIONS(777), - [anon_sym_ATinterface] = ACTIONS(775), - [anon_sym_interface] = ACTIONS(777), - [anon_sym_byte] = ACTIONS(777), - [anon_sym_short] = ACTIONS(777), - [anon_sym_int] = ACTIONS(777), - [anon_sym_long] = ACTIONS(777), - [anon_sym_char] = ACTIONS(777), - [anon_sym_float] = ACTIONS(777), - [anon_sym_double] = ACTIONS(777), - [sym_boolean_type] = ACTIONS(777), - [sym_void_type] = ACTIONS(777), - [sym_this] = ACTIONS(777), - [sym_super] = ACTIONS(777), + [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(780), + [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), + [anon_sym_RBRACE] = ACTIONS(778), + [sym_null_literal] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_LT] = 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_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_with] = 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(779), - [sym_identifier] = ACTIONS(781), - [sym_decimal_integer_literal] = ACTIONS(781), - [sym_hex_integer_literal] = ACTIONS(781), - [sym_octal_integer_literal] = ACTIONS(781), - [sym_binary_integer_literal] = ACTIONS(779), - [sym_decimal_floating_point_literal] = ACTIONS(779), - [sym_hex_floating_point_literal] = ACTIONS(781), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_character_literal] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(781), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), - [anon_sym_RBRACE] = ACTIONS(779), - [sym_null_literal] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_final] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_new] = ACTIONS(781), - [anon_sym_class] = ACTIONS(781), - [anon_sym_switch] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_case] = ACTIONS(781), - [anon_sym_default] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(779), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_yield] = ACTIONS(781), - [anon_sym_synchronized] = ACTIONS(781), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_try] = ACTIONS(781), - [anon_sym_if] = ACTIONS(781), - [anon_sym_else] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_open] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_static] = ACTIONS(781), - [anon_sym_with] = ACTIONS(781), - [anon_sym_package] = ACTIONS(781), - [anon_sym_import] = ACTIONS(781), - [anon_sym_enum] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_abstract] = ACTIONS(781), - [anon_sym_strictfp] = ACTIONS(781), - [anon_sym_native] = ACTIONS(781), - [anon_sym_transient] = ACTIONS(781), - [anon_sym_volatile] = ACTIONS(781), - [anon_sym_sealed] = ACTIONS(781), - [anon_sym_non_DASHsealed] = ACTIONS(779), - [anon_sym_record] = ACTIONS(781), - [anon_sym_ATinterface] = ACTIONS(779), - [anon_sym_interface] = ACTIONS(781), - [anon_sym_byte] = ACTIONS(781), - [anon_sym_short] = ACTIONS(781), - [anon_sym_int] = ACTIONS(781), - [anon_sym_long] = ACTIONS(781), - [anon_sym_char] = ACTIONS(781), - [anon_sym_float] = ACTIONS(781), - [anon_sym_double] = ACTIONS(781), - [sym_boolean_type] = ACTIONS(781), - [sym_void_type] = ACTIONS(781), - [sym_this] = ACTIONS(781), - [sym_super] = ACTIONS(781), + [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(784), + [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), + [anon_sym_RBRACE] = ACTIONS(782), + [sym_null_literal] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_LT] = 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_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_with] = 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(783), - [sym_identifier] = ACTIONS(785), - [sym_decimal_integer_literal] = ACTIONS(785), - [sym_hex_integer_literal] = ACTIONS(785), - [sym_octal_integer_literal] = ACTIONS(785), - [sym_binary_integer_literal] = ACTIONS(783), - [sym_decimal_floating_point_literal] = ACTIONS(783), - [sym_hex_floating_point_literal] = ACTIONS(785), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_character_literal] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(785), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [sym_null_literal] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_final] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_new] = ACTIONS(785), - [anon_sym_class] = ACTIONS(785), - [anon_sym_switch] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_case] = ACTIONS(785), - [anon_sym_default] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_assert] = ACTIONS(785), - [anon_sym_do] = ACTIONS(785), - [anon_sym_while] = ACTIONS(785), - [anon_sym_break] = ACTIONS(785), - [anon_sym_continue] = ACTIONS(785), - [anon_sym_return] = ACTIONS(785), - [anon_sym_yield] = ACTIONS(785), - [anon_sym_synchronized] = ACTIONS(785), - [anon_sym_throw] = ACTIONS(785), - [anon_sym_try] = ACTIONS(785), - [anon_sym_if] = ACTIONS(785), - [anon_sym_else] = ACTIONS(785), - [anon_sym_for] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_open] = ACTIONS(785), - [anon_sym_module] = ACTIONS(785), - [anon_sym_static] = ACTIONS(785), - [anon_sym_with] = ACTIONS(785), - [anon_sym_package] = ACTIONS(785), - [anon_sym_import] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(785), - [anon_sym_public] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_abstract] = ACTIONS(785), - [anon_sym_strictfp] = ACTIONS(785), - [anon_sym_native] = ACTIONS(785), - [anon_sym_transient] = ACTIONS(785), - [anon_sym_volatile] = ACTIONS(785), - [anon_sym_sealed] = ACTIONS(785), - [anon_sym_non_DASHsealed] = ACTIONS(783), - [anon_sym_record] = ACTIONS(785), - [anon_sym_ATinterface] = ACTIONS(783), - [anon_sym_interface] = ACTIONS(785), - [anon_sym_byte] = ACTIONS(785), - [anon_sym_short] = ACTIONS(785), - [anon_sym_int] = ACTIONS(785), - [anon_sym_long] = ACTIONS(785), - [anon_sym_char] = ACTIONS(785), - [anon_sym_float] = ACTIONS(785), - [anon_sym_double] = ACTIONS(785), - [sym_boolean_type] = ACTIONS(785), - [sym_void_type] = ACTIONS(785), - [sym_this] = ACTIONS(785), - [sym_super] = ACTIONS(785), + [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(788), + [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), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(786), + [sym_null_literal] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(788), + [anon_sym_final] = 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_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_with] = 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_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), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(787), - [sym_identifier] = ACTIONS(789), - [sym_decimal_integer_literal] = ACTIONS(789), - [sym_hex_integer_literal] = ACTIONS(789), - [sym_octal_integer_literal] = ACTIONS(789), - [sym_binary_integer_literal] = ACTIONS(787), - [sym_decimal_floating_point_literal] = ACTIONS(787), - [sym_hex_floating_point_literal] = ACTIONS(789), - [sym_true] = ACTIONS(789), - [sym_false] = ACTIONS(789), - [sym_character_literal] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [sym_null_literal] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_final] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_new] = ACTIONS(789), - [anon_sym_class] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_do] = ACTIONS(789), - [anon_sym_while] = ACTIONS(789), - [anon_sym_break] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_return] = ACTIONS(789), - [anon_sym_yield] = ACTIONS(789), - [anon_sym_synchronized] = ACTIONS(789), - [anon_sym_throw] = ACTIONS(789), - [anon_sym_try] = ACTIONS(789), - [anon_sym_if] = ACTIONS(789), - [anon_sym_else] = ACTIONS(789), - [anon_sym_for] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_open] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_static] = ACTIONS(789), - [anon_sym_with] = ACTIONS(789), - [anon_sym_package] = ACTIONS(789), - [anon_sym_import] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(789), - [anon_sym_strictfp] = ACTIONS(789), - [anon_sym_native] = ACTIONS(789), - [anon_sym_transient] = ACTIONS(789), - [anon_sym_volatile] = ACTIONS(789), - [anon_sym_sealed] = ACTIONS(789), - [anon_sym_non_DASHsealed] = ACTIONS(787), - [anon_sym_record] = ACTIONS(789), - [anon_sym_ATinterface] = ACTIONS(787), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_byte] = ACTIONS(789), - [anon_sym_short] = ACTIONS(789), - [anon_sym_int] = ACTIONS(789), - [anon_sym_long] = ACTIONS(789), - [anon_sym_char] = ACTIONS(789), - [anon_sym_float] = ACTIONS(789), - [anon_sym_double] = ACTIONS(789), - [sym_boolean_type] = ACTIONS(789), - [sym_void_type] = ACTIONS(789), - [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(789), + [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(792), + [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), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(790), + [sym_null_literal] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_final] = 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_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_with] = 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_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), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(791), - [sym_identifier] = ACTIONS(793), - [sym_decimal_integer_literal] = ACTIONS(793), - [sym_hex_integer_literal] = ACTIONS(793), - [sym_octal_integer_literal] = ACTIONS(793), - [sym_binary_integer_literal] = ACTIONS(791), - [sym_decimal_floating_point_literal] = ACTIONS(791), - [sym_hex_floating_point_literal] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [sym_character_literal] = ACTIONS(791), - [anon_sym_DQUOTE] = ACTIONS(793), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [sym_null_literal] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(791), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(791), - [anon_sym_new] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_yield] = ACTIONS(793), - [anon_sym_synchronized] = ACTIONS(793), - [anon_sym_throw] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_else] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(793), - [anon_sym_open] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_static] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_strictfp] = ACTIONS(793), - [anon_sym_native] = ACTIONS(793), - [anon_sym_transient] = ACTIONS(793), - [anon_sym_volatile] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_non_DASHsealed] = ACTIONS(791), - [anon_sym_record] = ACTIONS(793), - [anon_sym_ATinterface] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(793), - [anon_sym_byte] = ACTIONS(793), - [anon_sym_short] = ACTIONS(793), - [anon_sym_int] = ACTIONS(793), - [anon_sym_long] = ACTIONS(793), - [anon_sym_char] = ACTIONS(793), - [anon_sym_float] = ACTIONS(793), - [anon_sym_double] = ACTIONS(793), - [sym_boolean_type] = ACTIONS(793), - [sym_void_type] = ACTIONS(793), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(793), + [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(796), + [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), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(794), + [sym_null_literal] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_final] = 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_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_with] = 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_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), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(795), - [sym_identifier] = ACTIONS(797), - [sym_decimal_integer_literal] = ACTIONS(797), - [sym_hex_integer_literal] = ACTIONS(797), - [sym_octal_integer_literal] = ACTIONS(797), - [sym_binary_integer_literal] = ACTIONS(795), - [sym_decimal_floating_point_literal] = ACTIONS(795), - [sym_hex_floating_point_literal] = ACTIONS(797), - [sym_true] = ACTIONS(797), - [sym_false] = ACTIONS(797), - [sym_character_literal] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(797), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [sym_null_literal] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(797), - [anon_sym_final] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_TILDE] = ACTIONS(795), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_new] = ACTIONS(797), - [anon_sym_class] = ACTIONS(797), - [anon_sym_switch] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_case] = ACTIONS(797), - [anon_sym_default] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_assert] = ACTIONS(797), - [anon_sym_do] = ACTIONS(797), - [anon_sym_while] = ACTIONS(797), - [anon_sym_break] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(797), - [anon_sym_return] = ACTIONS(797), - [anon_sym_yield] = ACTIONS(797), - [anon_sym_synchronized] = ACTIONS(797), - [anon_sym_throw] = ACTIONS(797), - [anon_sym_try] = ACTIONS(797), - [anon_sym_if] = ACTIONS(797), - [anon_sym_else] = ACTIONS(797), - [anon_sym_for] = ACTIONS(797), - [anon_sym_AT] = ACTIONS(797), - [anon_sym_open] = ACTIONS(797), - [anon_sym_module] = ACTIONS(797), - [anon_sym_static] = ACTIONS(797), - [anon_sym_with] = ACTIONS(797), - [anon_sym_package] = ACTIONS(797), - [anon_sym_import] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(797), - [anon_sym_public] = ACTIONS(797), - [anon_sym_protected] = ACTIONS(797), - [anon_sym_private] = ACTIONS(797), - [anon_sym_abstract] = ACTIONS(797), - [anon_sym_strictfp] = ACTIONS(797), - [anon_sym_native] = ACTIONS(797), - [anon_sym_transient] = ACTIONS(797), - [anon_sym_volatile] = ACTIONS(797), - [anon_sym_sealed] = ACTIONS(797), - [anon_sym_non_DASHsealed] = ACTIONS(795), - [anon_sym_record] = ACTIONS(797), - [anon_sym_ATinterface] = ACTIONS(795), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_byte] = ACTIONS(797), - [anon_sym_short] = ACTIONS(797), - [anon_sym_int] = ACTIONS(797), - [anon_sym_long] = ACTIONS(797), - [anon_sym_char] = ACTIONS(797), - [anon_sym_float] = ACTIONS(797), - [anon_sym_double] = ACTIONS(797), - [sym_boolean_type] = ACTIONS(797), - [sym_void_type] = ACTIONS(797), - [sym_this] = ACTIONS(797), - [sym_super] = ACTIONS(797), + [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(800), + [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), + [anon_sym_DQUOTE] = ACTIONS(800), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(798), + [anon_sym_RBRACE] = ACTIONS(798), + [sym_null_literal] = ACTIONS(800), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_LT] = ACTIONS(798), + [anon_sym_PLUS] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(800), + [anon_sym_final] = 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_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_with] = 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_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), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_decimal_integer_literal] = ACTIONS(801), - [sym_hex_integer_literal] = ACTIONS(801), - [sym_octal_integer_literal] = ACTIONS(801), - [sym_binary_integer_literal] = ACTIONS(799), - [sym_decimal_floating_point_literal] = ACTIONS(799), - [sym_hex_floating_point_literal] = ACTIONS(801), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_character_literal] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [sym_null_literal] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(799), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_final] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_PLUS_PLUS] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(799), - [anon_sym_new] = ACTIONS(801), - [anon_sym_class] = ACTIONS(801), - [anon_sym_switch] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_case] = ACTIONS(801), - [anon_sym_default] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_assert] = ACTIONS(801), - [anon_sym_do] = ACTIONS(801), - [anon_sym_while] = ACTIONS(801), - [anon_sym_break] = ACTIONS(801), - [anon_sym_continue] = ACTIONS(801), - [anon_sym_return] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(801), - [anon_sym_synchronized] = ACTIONS(801), - [anon_sym_throw] = ACTIONS(801), - [anon_sym_try] = ACTIONS(801), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(801), - [anon_sym_for] = ACTIONS(801), - [anon_sym_AT] = ACTIONS(801), - [anon_sym_open] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_static] = ACTIONS(801), - [anon_sym_with] = ACTIONS(801), - [anon_sym_package] = ACTIONS(801), - [anon_sym_import] = ACTIONS(801), - [anon_sym_enum] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_abstract] = ACTIONS(801), - [anon_sym_strictfp] = ACTIONS(801), - [anon_sym_native] = ACTIONS(801), - [anon_sym_transient] = ACTIONS(801), - [anon_sym_volatile] = ACTIONS(801), - [anon_sym_sealed] = ACTIONS(801), - [anon_sym_non_DASHsealed] = ACTIONS(799), - [anon_sym_record] = ACTIONS(801), - [anon_sym_ATinterface] = ACTIONS(799), - [anon_sym_interface] = ACTIONS(801), - [anon_sym_byte] = ACTIONS(801), - [anon_sym_short] = ACTIONS(801), - [anon_sym_int] = ACTIONS(801), - [anon_sym_long] = ACTIONS(801), - [anon_sym_char] = ACTIONS(801), - [anon_sym_float] = ACTIONS(801), - [anon_sym_double] = ACTIONS(801), - [sym_boolean_type] = ACTIONS(801), - [sym_void_type] = ACTIONS(801), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(801), + [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(804), + [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), + [anon_sym_DQUOTE] = ACTIONS(804), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(802), + [anon_sym_RBRACE] = ACTIONS(802), + [sym_null_literal] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_LT] = ACTIONS(802), + [anon_sym_PLUS] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(804), + [anon_sym_final] = 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_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_with] = 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_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), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(803), - [sym_identifier] = ACTIONS(805), - [sym_decimal_integer_literal] = ACTIONS(805), - [sym_hex_integer_literal] = ACTIONS(805), - [sym_octal_integer_literal] = ACTIONS(805), - [sym_binary_integer_literal] = ACTIONS(803), - [sym_decimal_floating_point_literal] = ACTIONS(803), - [sym_hex_floating_point_literal] = ACTIONS(805), - [sym_true] = ACTIONS(805), - [sym_false] = ACTIONS(805), - [sym_character_literal] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [sym_null_literal] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_final] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(805), - [anon_sym_class] = ACTIONS(805), - [anon_sym_switch] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(803), - [anon_sym_case] = ACTIONS(805), - [anon_sym_default] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_assert] = ACTIONS(805), - [anon_sym_do] = ACTIONS(805), - [anon_sym_while] = ACTIONS(805), - [anon_sym_break] = ACTIONS(805), - [anon_sym_continue] = ACTIONS(805), - [anon_sym_return] = ACTIONS(805), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_synchronized] = ACTIONS(805), - [anon_sym_throw] = ACTIONS(805), - [anon_sym_try] = ACTIONS(805), - [anon_sym_if] = ACTIONS(805), - [anon_sym_else] = ACTIONS(805), - [anon_sym_for] = ACTIONS(805), - [anon_sym_AT] = ACTIONS(805), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_static] = ACTIONS(805), - [anon_sym_with] = ACTIONS(805), - [anon_sym_package] = ACTIONS(805), - [anon_sym_import] = ACTIONS(805), - [anon_sym_enum] = ACTIONS(805), - [anon_sym_public] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_abstract] = ACTIONS(805), - [anon_sym_strictfp] = ACTIONS(805), - [anon_sym_native] = ACTIONS(805), - [anon_sym_transient] = ACTIONS(805), - [anon_sym_volatile] = ACTIONS(805), - [anon_sym_sealed] = ACTIONS(805), - [anon_sym_non_DASHsealed] = ACTIONS(803), - [anon_sym_record] = ACTIONS(805), - [anon_sym_ATinterface] = ACTIONS(803), - [anon_sym_interface] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(805), - [anon_sym_short] = ACTIONS(805), - [anon_sym_int] = ACTIONS(805), - [anon_sym_long] = ACTIONS(805), - [anon_sym_char] = ACTIONS(805), - [anon_sym_float] = ACTIONS(805), - [anon_sym_double] = ACTIONS(805), - [sym_boolean_type] = ACTIONS(805), - [sym_void_type] = ACTIONS(805), - [sym_this] = ACTIONS(805), - [sym_super] = ACTIONS(805), + [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(808), + [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), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(806), + [anon_sym_RBRACE] = ACTIONS(806), + [sym_null_literal] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_final] = 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_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_with] = 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_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), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(807), - [sym_identifier] = ACTIONS(809), - [sym_decimal_integer_literal] = ACTIONS(809), - [sym_hex_integer_literal] = ACTIONS(809), - [sym_octal_integer_literal] = ACTIONS(809), - [sym_binary_integer_literal] = ACTIONS(807), - [sym_decimal_floating_point_literal] = ACTIONS(807), - [sym_hex_floating_point_literal] = ACTIONS(809), - [sym_true] = ACTIONS(809), - [sym_false] = ACTIONS(809), - [sym_character_literal] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [sym_null_literal] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_final] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_TILDE] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_class] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_case] = ACTIONS(809), - [anon_sym_default] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_assert] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_synchronized] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_try] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_else] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(809), - [anon_sym_open] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_static] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_package] = ACTIONS(809), - [anon_sym_import] = ACTIONS(809), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_strictfp] = ACTIONS(809), - [anon_sym_native] = ACTIONS(809), - [anon_sym_transient] = ACTIONS(809), - [anon_sym_volatile] = ACTIONS(809), - [anon_sym_sealed] = ACTIONS(809), - [anon_sym_non_DASHsealed] = ACTIONS(807), - [anon_sym_record] = ACTIONS(809), - [anon_sym_ATinterface] = ACTIONS(807), - [anon_sym_interface] = ACTIONS(809), - [anon_sym_byte] = ACTIONS(809), - [anon_sym_short] = ACTIONS(809), - [anon_sym_int] = ACTIONS(809), - [anon_sym_long] = ACTIONS(809), - [anon_sym_char] = ACTIONS(809), - [anon_sym_float] = ACTIONS(809), - [anon_sym_double] = ACTIONS(809), - [sym_boolean_type] = ACTIONS(809), - [sym_void_type] = ACTIONS(809), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(809), + [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(812), + [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), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(810), + [sym_null_literal] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_PLUS] = ACTIONS(812), + [anon_sym_DASH] = ACTIONS(812), + [anon_sym_final] = 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_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_with] = 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_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), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(811), - [sym_identifier] = ACTIONS(813), - [sym_decimal_integer_literal] = ACTIONS(813), - [sym_hex_integer_literal] = ACTIONS(813), - [sym_octal_integer_literal] = ACTIONS(813), - [sym_binary_integer_literal] = ACTIONS(811), - [sym_decimal_floating_point_literal] = ACTIONS(811), - [sym_hex_floating_point_literal] = ACTIONS(813), - [sym_true] = ACTIONS(813), - [sym_false] = ACTIONS(813), - [sym_character_literal] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(813), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [sym_null_literal] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_final] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(811), - [anon_sym_DASH_DASH] = ACTIONS(811), - [anon_sym_new] = ACTIONS(813), - [anon_sym_class] = ACTIONS(813), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_case] = ACTIONS(813), - [anon_sym_default] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_assert] = ACTIONS(813), - [anon_sym_do] = ACTIONS(813), - [anon_sym_while] = ACTIONS(813), - [anon_sym_break] = ACTIONS(813), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_return] = ACTIONS(813), - [anon_sym_yield] = ACTIONS(813), - [anon_sym_synchronized] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_try] = ACTIONS(813), - [anon_sym_if] = ACTIONS(813), - [anon_sym_else] = ACTIONS(813), - [anon_sym_for] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_open] = ACTIONS(813), - [anon_sym_module] = ACTIONS(813), - [anon_sym_static] = ACTIONS(813), - [anon_sym_with] = ACTIONS(813), - [anon_sym_package] = ACTIONS(813), - [anon_sym_import] = ACTIONS(813), - [anon_sym_enum] = ACTIONS(813), - [anon_sym_public] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_abstract] = ACTIONS(813), - [anon_sym_strictfp] = ACTIONS(813), - [anon_sym_native] = ACTIONS(813), - [anon_sym_transient] = ACTIONS(813), - [anon_sym_volatile] = ACTIONS(813), - [anon_sym_sealed] = ACTIONS(813), - [anon_sym_non_DASHsealed] = ACTIONS(811), - [anon_sym_record] = ACTIONS(813), - [anon_sym_ATinterface] = ACTIONS(811), - [anon_sym_interface] = ACTIONS(813), - [anon_sym_byte] = ACTIONS(813), - [anon_sym_short] = ACTIONS(813), - [anon_sym_int] = ACTIONS(813), - [anon_sym_long] = ACTIONS(813), - [anon_sym_char] = ACTIONS(813), - [anon_sym_float] = ACTIONS(813), - [anon_sym_double] = ACTIONS(813), - [sym_boolean_type] = ACTIONS(813), - [sym_void_type] = ACTIONS(813), - [sym_this] = ACTIONS(813), - [sym_super] = ACTIONS(813), + [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(816), + [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), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(814), + [anon_sym_RBRACE] = ACTIONS(814), + [sym_null_literal] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(816), + [anon_sym_final] = 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_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_with] = 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_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), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(815), - [sym_identifier] = ACTIONS(817), - [sym_decimal_integer_literal] = ACTIONS(817), - [sym_hex_integer_literal] = ACTIONS(817), - [sym_octal_integer_literal] = ACTIONS(817), - [sym_binary_integer_literal] = ACTIONS(815), - [sym_decimal_floating_point_literal] = ACTIONS(815), - [sym_hex_floating_point_literal] = ACTIONS(817), - [sym_true] = ACTIONS(817), - [sym_false] = ACTIONS(817), - [sym_character_literal] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [sym_null_literal] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_LT] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_final] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_new] = ACTIONS(817), - [anon_sym_class] = ACTIONS(817), - [anon_sym_switch] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_case] = ACTIONS(817), - [anon_sym_default] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_assert] = ACTIONS(817), - [anon_sym_do] = ACTIONS(817), - [anon_sym_while] = ACTIONS(817), - [anon_sym_break] = ACTIONS(817), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_return] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(817), - [anon_sym_synchronized] = ACTIONS(817), - [anon_sym_throw] = ACTIONS(817), - [anon_sym_try] = ACTIONS(817), - [anon_sym_if] = ACTIONS(817), - [anon_sym_else] = ACTIONS(817), - [anon_sym_for] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [anon_sym_open] = ACTIONS(817), - [anon_sym_module] = ACTIONS(817), - [anon_sym_static] = ACTIONS(817), - [anon_sym_with] = ACTIONS(817), - [anon_sym_package] = ACTIONS(817), - [anon_sym_import] = ACTIONS(817), - [anon_sym_enum] = ACTIONS(817), - [anon_sym_public] = ACTIONS(817), - [anon_sym_protected] = ACTIONS(817), - [anon_sym_private] = ACTIONS(817), - [anon_sym_abstract] = ACTIONS(817), - [anon_sym_strictfp] = ACTIONS(817), - [anon_sym_native] = ACTIONS(817), - [anon_sym_transient] = ACTIONS(817), - [anon_sym_volatile] = ACTIONS(817), - [anon_sym_sealed] = ACTIONS(817), - [anon_sym_non_DASHsealed] = ACTIONS(815), - [anon_sym_record] = ACTIONS(817), - [anon_sym_ATinterface] = ACTIONS(815), - [anon_sym_interface] = ACTIONS(817), - [anon_sym_byte] = ACTIONS(817), - [anon_sym_short] = ACTIONS(817), - [anon_sym_int] = ACTIONS(817), - [anon_sym_long] = ACTIONS(817), - [anon_sym_char] = ACTIONS(817), - [anon_sym_float] = ACTIONS(817), - [anon_sym_double] = ACTIONS(817), - [sym_boolean_type] = ACTIONS(817), - [sym_void_type] = ACTIONS(817), - [sym_this] = ACTIONS(817), - [sym_super] = ACTIONS(817), + [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(820), + [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), + [anon_sym_DQUOTE] = ACTIONS(820), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(818), + [sym_null_literal] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_final] = 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_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_with] = 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_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), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(819), - [sym_identifier] = ACTIONS(821), - [sym_decimal_integer_literal] = ACTIONS(821), - [sym_hex_integer_literal] = ACTIONS(821), - [sym_octal_integer_literal] = ACTIONS(821), - [sym_binary_integer_literal] = ACTIONS(819), - [sym_decimal_floating_point_literal] = ACTIONS(819), - [sym_hex_floating_point_literal] = ACTIONS(821), - [sym_true] = ACTIONS(821), - [sym_false] = ACTIONS(821), - [sym_character_literal] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [sym_null_literal] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_final] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_new] = ACTIONS(821), - [anon_sym_class] = ACTIONS(821), - [anon_sym_switch] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(819), - [anon_sym_case] = ACTIONS(821), - [anon_sym_default] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_assert] = ACTIONS(821), - [anon_sym_do] = ACTIONS(821), - [anon_sym_while] = ACTIONS(821), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_return] = ACTIONS(821), - [anon_sym_yield] = ACTIONS(821), - [anon_sym_synchronized] = ACTIONS(821), - [anon_sym_throw] = ACTIONS(821), - [anon_sym_try] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_else] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_open] = ACTIONS(821), - [anon_sym_module] = ACTIONS(821), - [anon_sym_static] = ACTIONS(821), - [anon_sym_with] = ACTIONS(821), - [anon_sym_package] = ACTIONS(821), - [anon_sym_import] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(821), - [anon_sym_public] = ACTIONS(821), - [anon_sym_protected] = ACTIONS(821), - [anon_sym_private] = ACTIONS(821), - [anon_sym_abstract] = ACTIONS(821), - [anon_sym_strictfp] = ACTIONS(821), - [anon_sym_native] = ACTIONS(821), - [anon_sym_transient] = ACTIONS(821), - [anon_sym_volatile] = ACTIONS(821), - [anon_sym_sealed] = ACTIONS(821), - [anon_sym_non_DASHsealed] = ACTIONS(819), - [anon_sym_record] = ACTIONS(821), - [anon_sym_ATinterface] = ACTIONS(819), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_byte] = ACTIONS(821), - [anon_sym_short] = ACTIONS(821), - [anon_sym_int] = ACTIONS(821), - [anon_sym_long] = ACTIONS(821), - [anon_sym_char] = ACTIONS(821), - [anon_sym_float] = ACTIONS(821), - [anon_sym_double] = ACTIONS(821), - [sym_boolean_type] = ACTIONS(821), - [sym_void_type] = ACTIONS(821), - [sym_this] = ACTIONS(821), - [sym_super] = ACTIONS(821), + [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(824), + [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), + [anon_sym_DQUOTE] = ACTIONS(824), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(822), + [sym_null_literal] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_PLUS] = ACTIONS(824), + [anon_sym_DASH] = ACTIONS(824), + [anon_sym_final] = 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_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_with] = 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_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), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(823), - [sym_identifier] = ACTIONS(825), - [sym_decimal_integer_literal] = ACTIONS(825), - [sym_hex_integer_literal] = ACTIONS(825), - [sym_octal_integer_literal] = ACTIONS(825), - [sym_binary_integer_literal] = ACTIONS(823), - [sym_decimal_floating_point_literal] = ACTIONS(823), - [sym_hex_floating_point_literal] = ACTIONS(825), - [sym_true] = ACTIONS(825), - [sym_false] = ACTIONS(825), - [sym_character_literal] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [sym_null_literal] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_final] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_new] = ACTIONS(825), - [anon_sym_class] = ACTIONS(825), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_case] = ACTIONS(825), - [anon_sym_default] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_assert] = ACTIONS(825), - [anon_sym_do] = ACTIONS(825), - [anon_sym_while] = ACTIONS(825), - [anon_sym_break] = ACTIONS(825), - [anon_sym_continue] = ACTIONS(825), - [anon_sym_return] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(825), - [anon_sym_synchronized] = ACTIONS(825), - [anon_sym_throw] = ACTIONS(825), - [anon_sym_try] = ACTIONS(825), - [anon_sym_if] = ACTIONS(825), - [anon_sym_else] = ACTIONS(825), - [anon_sym_for] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_open] = ACTIONS(825), - [anon_sym_module] = ACTIONS(825), - [anon_sym_static] = ACTIONS(825), - [anon_sym_with] = ACTIONS(825), - [anon_sym_package] = ACTIONS(825), - [anon_sym_import] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_public] = ACTIONS(825), - [anon_sym_protected] = ACTIONS(825), - [anon_sym_private] = ACTIONS(825), - [anon_sym_abstract] = ACTIONS(825), - [anon_sym_strictfp] = ACTIONS(825), - [anon_sym_native] = ACTIONS(825), - [anon_sym_transient] = ACTIONS(825), - [anon_sym_volatile] = ACTIONS(825), - [anon_sym_sealed] = ACTIONS(825), - [anon_sym_non_DASHsealed] = ACTIONS(823), - [anon_sym_record] = ACTIONS(825), - [anon_sym_ATinterface] = ACTIONS(823), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_byte] = ACTIONS(825), - [anon_sym_short] = ACTIONS(825), - [anon_sym_int] = ACTIONS(825), - [anon_sym_long] = ACTIONS(825), - [anon_sym_char] = ACTIONS(825), - [anon_sym_float] = ACTIONS(825), - [anon_sym_double] = ACTIONS(825), - [sym_boolean_type] = ACTIONS(825), - [sym_void_type] = ACTIONS(825), - [sym_this] = ACTIONS(825), - [sym_super] = ACTIONS(825), + [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(828), + [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), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [sym_null_literal] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(828), + [anon_sym_final] = 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_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_with] = 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_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), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(827), - [sym_identifier] = ACTIONS(829), - [sym_decimal_integer_literal] = ACTIONS(829), - [sym_hex_integer_literal] = ACTIONS(829), - [sym_octal_integer_literal] = ACTIONS(829), - [sym_binary_integer_literal] = ACTIONS(827), - [sym_decimal_floating_point_literal] = ACTIONS(827), - [sym_hex_floating_point_literal] = ACTIONS(829), - [sym_true] = ACTIONS(829), - [sym_false] = ACTIONS(829), - [sym_character_literal] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(827), - [anon_sym_RBRACE] = ACTIONS(827), - [sym_null_literal] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_final] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(827), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_new] = ACTIONS(829), - [anon_sym_class] = ACTIONS(829), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_case] = ACTIONS(829), - [anon_sym_default] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(827), - [anon_sym_assert] = ACTIONS(829), - [anon_sym_do] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_return] = ACTIONS(829), - [anon_sym_yield] = ACTIONS(829), - [anon_sym_synchronized] = ACTIONS(829), - [anon_sym_throw] = ACTIONS(829), - [anon_sym_try] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_else] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_open] = ACTIONS(829), - [anon_sym_module] = ACTIONS(829), - [anon_sym_static] = ACTIONS(829), - [anon_sym_with] = ACTIONS(829), - [anon_sym_package] = ACTIONS(829), - [anon_sym_import] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(829), - [anon_sym_public] = ACTIONS(829), - [anon_sym_protected] = ACTIONS(829), - [anon_sym_private] = ACTIONS(829), - [anon_sym_abstract] = ACTIONS(829), - [anon_sym_strictfp] = ACTIONS(829), - [anon_sym_native] = ACTIONS(829), - [anon_sym_transient] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_sealed] = ACTIONS(829), - [anon_sym_non_DASHsealed] = ACTIONS(827), - [anon_sym_record] = ACTIONS(829), - [anon_sym_ATinterface] = ACTIONS(827), - [anon_sym_interface] = ACTIONS(829), - [anon_sym_byte] = ACTIONS(829), - [anon_sym_short] = ACTIONS(829), - [anon_sym_int] = ACTIONS(829), - [anon_sym_long] = ACTIONS(829), - [anon_sym_char] = ACTIONS(829), - [anon_sym_float] = ACTIONS(829), - [anon_sym_double] = ACTIONS(829), - [sym_boolean_type] = ACTIONS(829), - [sym_void_type] = ACTIONS(829), - [sym_this] = ACTIONS(829), - [sym_super] = ACTIONS(829), + [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(832), + [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), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [sym_null_literal] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(832), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_final] = 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_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_with] = 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_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), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(831), - [sym_identifier] = ACTIONS(833), - [sym_decimal_integer_literal] = ACTIONS(833), - [sym_hex_integer_literal] = ACTIONS(833), - [sym_octal_integer_literal] = ACTIONS(833), - [sym_binary_integer_literal] = ACTIONS(831), - [sym_decimal_floating_point_literal] = ACTIONS(831), - [sym_hex_floating_point_literal] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_character_literal] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(831), - [anon_sym_RBRACE] = ACTIONS(831), - [sym_null_literal] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(833), - [anon_sym_DASH] = ACTIONS(833), - [anon_sym_final] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(831), - [anon_sym_new] = ACTIONS(833), - [anon_sym_class] = ACTIONS(833), - [anon_sym_switch] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_case] = ACTIONS(833), - [anon_sym_default] = ACTIONS(833), - [anon_sym_SEMI] = ACTIONS(831), - [anon_sym_assert] = ACTIONS(833), - [anon_sym_do] = ACTIONS(833), - [anon_sym_while] = ACTIONS(833), - [anon_sym_break] = ACTIONS(833), - [anon_sym_continue] = ACTIONS(833), - [anon_sym_return] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_synchronized] = ACTIONS(833), - [anon_sym_throw] = ACTIONS(833), - [anon_sym_try] = ACTIONS(833), - [anon_sym_if] = ACTIONS(833), - [anon_sym_else] = ACTIONS(833), - [anon_sym_for] = ACTIONS(833), - [anon_sym_AT] = ACTIONS(833), - [anon_sym_open] = ACTIONS(833), - [anon_sym_module] = ACTIONS(833), - [anon_sym_static] = ACTIONS(833), - [anon_sym_with] = ACTIONS(833), - [anon_sym_package] = ACTIONS(833), - [anon_sym_import] = ACTIONS(833), - [anon_sym_enum] = ACTIONS(833), - [anon_sym_public] = ACTIONS(833), - [anon_sym_protected] = ACTIONS(833), - [anon_sym_private] = ACTIONS(833), - [anon_sym_abstract] = ACTIONS(833), - [anon_sym_strictfp] = ACTIONS(833), - [anon_sym_native] = ACTIONS(833), - [anon_sym_transient] = ACTIONS(833), - [anon_sym_volatile] = ACTIONS(833), - [anon_sym_sealed] = ACTIONS(833), - [anon_sym_non_DASHsealed] = ACTIONS(831), - [anon_sym_record] = ACTIONS(833), - [anon_sym_ATinterface] = ACTIONS(831), - [anon_sym_interface] = ACTIONS(833), - [anon_sym_byte] = ACTIONS(833), - [anon_sym_short] = ACTIONS(833), - [anon_sym_int] = ACTIONS(833), - [anon_sym_long] = ACTIONS(833), - [anon_sym_char] = ACTIONS(833), - [anon_sym_float] = ACTIONS(833), - [anon_sym_double] = ACTIONS(833), - [sym_boolean_type] = ACTIONS(833), - [sym_void_type] = ACTIONS(833), - [sym_this] = ACTIONS(833), - [sym_super] = ACTIONS(833), + [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(836), + [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), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [sym_null_literal] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_final] = 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_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_with] = 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_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), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(835), - [sym_identifier] = ACTIONS(837), - [sym_decimal_integer_literal] = ACTIONS(837), - [sym_hex_integer_literal] = ACTIONS(837), - [sym_octal_integer_literal] = ACTIONS(837), - [sym_binary_integer_literal] = ACTIONS(835), - [sym_decimal_floating_point_literal] = ACTIONS(835), - [sym_hex_floating_point_literal] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_character_literal] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [sym_null_literal] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(837), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_final] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_new] = ACTIONS(837), - [anon_sym_class] = ACTIONS(837), - [anon_sym_switch] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_case] = ACTIONS(837), - [anon_sym_default] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_assert] = ACTIONS(837), - [anon_sym_do] = ACTIONS(837), - [anon_sym_while] = ACTIONS(837), - [anon_sym_break] = ACTIONS(837), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_return] = ACTIONS(837), - [anon_sym_yield] = ACTIONS(837), - [anon_sym_synchronized] = ACTIONS(837), - [anon_sym_throw] = ACTIONS(837), - [anon_sym_try] = ACTIONS(837), - [anon_sym_if] = ACTIONS(837), - [anon_sym_else] = ACTIONS(837), - [anon_sym_for] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(837), - [anon_sym_open] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_static] = ACTIONS(837), - [anon_sym_with] = ACTIONS(837), - [anon_sym_package] = ACTIONS(837), - [anon_sym_import] = ACTIONS(837), - [anon_sym_enum] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_abstract] = ACTIONS(837), - [anon_sym_strictfp] = ACTIONS(837), - [anon_sym_native] = ACTIONS(837), - [anon_sym_transient] = ACTIONS(837), - [anon_sym_volatile] = ACTIONS(837), - [anon_sym_sealed] = ACTIONS(837), - [anon_sym_non_DASHsealed] = ACTIONS(835), - [anon_sym_record] = ACTIONS(837), - [anon_sym_ATinterface] = ACTIONS(835), - [anon_sym_interface] = ACTIONS(837), - [anon_sym_byte] = ACTIONS(837), - [anon_sym_short] = ACTIONS(837), - [anon_sym_int] = ACTIONS(837), - [anon_sym_long] = ACTIONS(837), - [anon_sym_char] = ACTIONS(837), - [anon_sym_float] = ACTIONS(837), - [anon_sym_double] = ACTIONS(837), - [sym_boolean_type] = ACTIONS(837), - [sym_void_type] = ACTIONS(837), - [sym_this] = ACTIONS(837), - [sym_super] = ACTIONS(837), + [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(840), + [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), + [anon_sym_DQUOTE] = ACTIONS(840), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(838), + [anon_sym_RBRACE] = ACTIONS(838), + [sym_null_literal] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(838), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_PLUS] = ACTIONS(840), + [anon_sym_DASH] = ACTIONS(840), + [anon_sym_final] = 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_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_with] = 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_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), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(839), - [sym_identifier] = ACTIONS(841), - [sym_decimal_integer_literal] = ACTIONS(841), - [sym_hex_integer_literal] = ACTIONS(841), - [sym_octal_integer_literal] = ACTIONS(841), - [sym_binary_integer_literal] = ACTIONS(839), - [sym_decimal_floating_point_literal] = ACTIONS(839), - [sym_hex_floating_point_literal] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_character_literal] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(839), - [anon_sym_RBRACE] = ACTIONS(839), - [sym_null_literal] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_final] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(839), - [anon_sym_DASH_DASH] = ACTIONS(839), - [anon_sym_new] = ACTIONS(841), - [anon_sym_class] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(839), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_assert] = ACTIONS(841), - [anon_sym_do] = ACTIONS(841), - [anon_sym_while] = ACTIONS(841), - [anon_sym_break] = ACTIONS(841), - [anon_sym_continue] = ACTIONS(841), - [anon_sym_return] = ACTIONS(841), - [anon_sym_yield] = ACTIONS(841), - [anon_sym_synchronized] = ACTIONS(841), - [anon_sym_throw] = ACTIONS(841), - [anon_sym_try] = ACTIONS(841), - [anon_sym_if] = ACTIONS(841), - [anon_sym_else] = ACTIONS(841), - [anon_sym_for] = ACTIONS(841), - [anon_sym_AT] = ACTIONS(841), - [anon_sym_open] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_static] = ACTIONS(841), - [anon_sym_with] = ACTIONS(841), - [anon_sym_package] = ACTIONS(841), - [anon_sym_import] = ACTIONS(841), - [anon_sym_enum] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_abstract] = ACTIONS(841), - [anon_sym_strictfp] = ACTIONS(841), - [anon_sym_native] = ACTIONS(841), - [anon_sym_transient] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_sealed] = ACTIONS(841), - [anon_sym_non_DASHsealed] = ACTIONS(839), - [anon_sym_record] = ACTIONS(841), - [anon_sym_ATinterface] = ACTIONS(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_byte] = ACTIONS(841), - [anon_sym_short] = ACTIONS(841), - [anon_sym_int] = ACTIONS(841), - [anon_sym_long] = ACTIONS(841), - [anon_sym_char] = ACTIONS(841), - [anon_sym_float] = ACTIONS(841), - [anon_sym_double] = ACTIONS(841), - [sym_boolean_type] = ACTIONS(841), - [sym_void_type] = ACTIONS(841), - [sym_this] = ACTIONS(841), - [sym_super] = ACTIONS(841), + [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(844), + [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), + [anon_sym_DQUOTE] = ACTIONS(844), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(842), + [anon_sym_RBRACE] = ACTIONS(842), + [sym_null_literal] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_final] = 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_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_with] = 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_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), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(843), - [sym_identifier] = ACTIONS(845), - [sym_decimal_integer_literal] = ACTIONS(845), - [sym_hex_integer_literal] = ACTIONS(845), - [sym_octal_integer_literal] = ACTIONS(845), - [sym_binary_integer_literal] = ACTIONS(843), - [sym_decimal_floating_point_literal] = ACTIONS(843), - [sym_hex_floating_point_literal] = ACTIONS(845), - [sym_true] = ACTIONS(845), - [sym_false] = ACTIONS(845), - [sym_character_literal] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(843), - [anon_sym_RBRACE] = ACTIONS(843), - [sym_null_literal] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_final] = ACTIONS(845), - [anon_sym_BANG] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(843), - [anon_sym_DASH_DASH] = ACTIONS(843), - [anon_sym_new] = ACTIONS(845), - [anon_sym_class] = ACTIONS(845), - [anon_sym_switch] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(843), - [anon_sym_case] = ACTIONS(845), - [anon_sym_default] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_assert] = ACTIONS(845), - [anon_sym_do] = ACTIONS(845), - [anon_sym_while] = ACTIONS(845), - [anon_sym_break] = ACTIONS(845), - [anon_sym_continue] = ACTIONS(845), - [anon_sym_return] = ACTIONS(845), - [anon_sym_yield] = ACTIONS(845), - [anon_sym_synchronized] = ACTIONS(845), - [anon_sym_throw] = ACTIONS(845), - [anon_sym_try] = ACTIONS(845), - [anon_sym_if] = ACTIONS(845), - [anon_sym_else] = ACTIONS(845), - [anon_sym_for] = ACTIONS(845), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_open] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_static] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - [anon_sym_package] = ACTIONS(845), - [anon_sym_import] = ACTIONS(845), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_public] = ACTIONS(845), - [anon_sym_protected] = ACTIONS(845), - [anon_sym_private] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(845), - [anon_sym_strictfp] = ACTIONS(845), - [anon_sym_native] = ACTIONS(845), - [anon_sym_transient] = ACTIONS(845), - [anon_sym_volatile] = ACTIONS(845), - [anon_sym_sealed] = ACTIONS(845), - [anon_sym_non_DASHsealed] = ACTIONS(843), - [anon_sym_record] = ACTIONS(845), - [anon_sym_ATinterface] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_byte] = ACTIONS(845), - [anon_sym_short] = ACTIONS(845), - [anon_sym_int] = ACTIONS(845), - [anon_sym_long] = ACTIONS(845), - [anon_sym_char] = ACTIONS(845), - [anon_sym_float] = ACTIONS(845), - [anon_sym_double] = ACTIONS(845), - [sym_boolean_type] = ACTIONS(845), - [sym_void_type] = ACTIONS(845), - [sym_this] = ACTIONS(845), - [sym_super] = ACTIONS(845), + [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(848), + [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), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(846), + [sym_null_literal] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_final] = 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_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_with] = 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_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), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(847), - [sym_identifier] = ACTIONS(849), - [sym_decimal_integer_literal] = ACTIONS(849), - [sym_hex_integer_literal] = ACTIONS(849), - [sym_octal_integer_literal] = ACTIONS(849), - [sym_binary_integer_literal] = ACTIONS(847), - [sym_decimal_floating_point_literal] = ACTIONS(847), - [sym_hex_floating_point_literal] = ACTIONS(849), - [sym_true] = ACTIONS(849), - [sym_false] = ACTIONS(849), - [sym_character_literal] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), - [sym_null_literal] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_final] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_new] = ACTIONS(849), - [anon_sym_class] = ACTIONS(849), - [anon_sym_switch] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_case] = ACTIONS(849), - [anon_sym_default] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_assert] = ACTIONS(849), - [anon_sym_do] = ACTIONS(849), - [anon_sym_while] = ACTIONS(849), - [anon_sym_break] = ACTIONS(849), - [anon_sym_continue] = ACTIONS(849), - [anon_sym_return] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(849), - [anon_sym_synchronized] = ACTIONS(849), - [anon_sym_throw] = ACTIONS(849), - [anon_sym_try] = ACTIONS(849), - [anon_sym_if] = ACTIONS(849), - [anon_sym_else] = ACTIONS(849), - [anon_sym_for] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(849), - [anon_sym_open] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_static] = ACTIONS(849), - [anon_sym_with] = ACTIONS(849), - [anon_sym_package] = ACTIONS(849), - [anon_sym_import] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(849), - [anon_sym_strictfp] = ACTIONS(849), - [anon_sym_native] = ACTIONS(849), - [anon_sym_transient] = ACTIONS(849), - [anon_sym_volatile] = ACTIONS(849), - [anon_sym_sealed] = ACTIONS(849), - [anon_sym_non_DASHsealed] = ACTIONS(847), - [anon_sym_record] = ACTIONS(849), - [anon_sym_ATinterface] = ACTIONS(847), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_byte] = ACTIONS(849), - [anon_sym_short] = ACTIONS(849), - [anon_sym_int] = ACTIONS(849), - [anon_sym_long] = ACTIONS(849), - [anon_sym_char] = ACTIONS(849), - [anon_sym_float] = ACTIONS(849), - [anon_sym_double] = ACTIONS(849), - [sym_boolean_type] = ACTIONS(849), - [sym_void_type] = ACTIONS(849), - [sym_this] = ACTIONS(849), - [sym_super] = ACTIONS(849), + [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(852), + [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), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [sym_null_literal] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_final] = 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_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_with] = 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_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), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(851), - [sym_identifier] = ACTIONS(853), - [sym_decimal_integer_literal] = ACTIONS(853), - [sym_hex_integer_literal] = ACTIONS(853), - [sym_octal_integer_literal] = ACTIONS(853), - [sym_binary_integer_literal] = ACTIONS(851), - [sym_decimal_floating_point_literal] = ACTIONS(851), - [sym_hex_floating_point_literal] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_character_literal] = ACTIONS(851), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [sym_null_literal] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_final] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_DASH_DASH] = ACTIONS(851), - [anon_sym_new] = ACTIONS(853), - [anon_sym_class] = ACTIONS(853), - [anon_sym_switch] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(851), - [anon_sym_case] = ACTIONS(853), - [anon_sym_default] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_yield] = ACTIONS(853), - [anon_sym_synchronized] = ACTIONS(853), - [anon_sym_throw] = ACTIONS(853), - [anon_sym_try] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_else] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(853), - [anon_sym_open] = ACTIONS(853), - [anon_sym_module] = ACTIONS(853), - [anon_sym_static] = ACTIONS(853), - [anon_sym_with] = ACTIONS(853), - [anon_sym_package] = ACTIONS(853), - [anon_sym_import] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(853), - [anon_sym_public] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_abstract] = ACTIONS(853), - [anon_sym_strictfp] = ACTIONS(853), - [anon_sym_native] = ACTIONS(853), - [anon_sym_transient] = ACTIONS(853), - [anon_sym_volatile] = ACTIONS(853), - [anon_sym_sealed] = ACTIONS(853), - [anon_sym_non_DASHsealed] = ACTIONS(851), - [anon_sym_record] = ACTIONS(853), - [anon_sym_ATinterface] = ACTIONS(851), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_byte] = ACTIONS(853), - [anon_sym_short] = ACTIONS(853), - [anon_sym_int] = ACTIONS(853), - [anon_sym_long] = ACTIONS(853), - [anon_sym_char] = ACTIONS(853), - [anon_sym_float] = ACTIONS(853), - [anon_sym_double] = ACTIONS(853), - [sym_boolean_type] = ACTIONS(853), - [sym_void_type] = ACTIONS(853), - [sym_this] = ACTIONS(853), - [sym_super] = ACTIONS(853), + [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(856), + [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), + [anon_sym_DQUOTE] = ACTIONS(856), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [sym_null_literal] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_final] = 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_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_with] = 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_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), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(857), - [sym_decimal_integer_literal] = ACTIONS(857), - [sym_hex_integer_literal] = ACTIONS(857), - [sym_octal_integer_literal] = ACTIONS(857), - [sym_binary_integer_literal] = ACTIONS(855), - [sym_decimal_floating_point_literal] = ACTIONS(855), - [sym_hex_floating_point_literal] = ACTIONS(857), - [sym_true] = ACTIONS(857), - [sym_false] = ACTIONS(857), - [sym_character_literal] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [sym_null_literal] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_final] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(855), - [anon_sym_new] = ACTIONS(857), - [anon_sym_class] = ACTIONS(857), - [anon_sym_switch] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_case] = ACTIONS(857), - [anon_sym_default] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_assert] = ACTIONS(857), - [anon_sym_do] = ACTIONS(857), - [anon_sym_while] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_return] = ACTIONS(857), - [anon_sym_yield] = ACTIONS(857), - [anon_sym_synchronized] = ACTIONS(857), - [anon_sym_throw] = ACTIONS(857), - [anon_sym_try] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_else] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(857), - [anon_sym_open] = ACTIONS(857), - [anon_sym_module] = ACTIONS(857), - [anon_sym_static] = ACTIONS(857), - [anon_sym_with] = ACTIONS(857), - [anon_sym_package] = ACTIONS(857), - [anon_sym_import] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_public] = ACTIONS(857), - [anon_sym_protected] = ACTIONS(857), - [anon_sym_private] = ACTIONS(857), - [anon_sym_abstract] = ACTIONS(857), - [anon_sym_strictfp] = ACTIONS(857), - [anon_sym_native] = ACTIONS(857), - [anon_sym_transient] = ACTIONS(857), - [anon_sym_volatile] = ACTIONS(857), - [anon_sym_sealed] = ACTIONS(857), - [anon_sym_non_DASHsealed] = ACTIONS(855), - [anon_sym_record] = ACTIONS(857), - [anon_sym_ATinterface] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_byte] = ACTIONS(857), - [anon_sym_short] = ACTIONS(857), - [anon_sym_int] = ACTIONS(857), - [anon_sym_long] = ACTIONS(857), - [anon_sym_char] = ACTIONS(857), - [anon_sym_float] = ACTIONS(857), - [anon_sym_double] = ACTIONS(857), - [sym_boolean_type] = ACTIONS(857), - [sym_void_type] = ACTIONS(857), - [sym_this] = ACTIONS(857), - [sym_super] = ACTIONS(857), + [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(860), + [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), + [anon_sym_DQUOTE] = ACTIONS(860), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [sym_null_literal] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_final] = 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_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_with] = 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(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), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(859), - [sym_identifier] = ACTIONS(861), - [sym_decimal_integer_literal] = ACTIONS(861), - [sym_hex_integer_literal] = ACTIONS(861), - [sym_octal_integer_literal] = ACTIONS(861), - [sym_binary_integer_literal] = ACTIONS(859), - [sym_decimal_floating_point_literal] = ACTIONS(859), - [sym_hex_floating_point_literal] = ACTIONS(861), - [sym_true] = ACTIONS(861), - [sym_false] = ACTIONS(861), - [sym_character_literal] = ACTIONS(859), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(859), - [anon_sym_RBRACE] = ACTIONS(859), - [sym_null_literal] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_final] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(859), - [anon_sym_DASH_DASH] = ACTIONS(859), - [anon_sym_new] = ACTIONS(861), - [anon_sym_class] = ACTIONS(861), - [anon_sym_switch] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_case] = ACTIONS(861), - [anon_sym_default] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(859), - [anon_sym_assert] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_yield] = ACTIONS(861), - [anon_sym_synchronized] = ACTIONS(861), - [anon_sym_throw] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_open] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_static] = ACTIONS(861), - [anon_sym_with] = ACTIONS(861), - [anon_sym_package] = ACTIONS(861), - [anon_sym_import] = ACTIONS(861), - [anon_sym_enum] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_abstract] = ACTIONS(861), - [anon_sym_strictfp] = ACTIONS(861), - [anon_sym_native] = ACTIONS(861), - [anon_sym_transient] = ACTIONS(861), - [anon_sym_volatile] = ACTIONS(861), - [anon_sym_sealed] = ACTIONS(861), - [anon_sym_non_DASHsealed] = ACTIONS(859), - [anon_sym_record] = ACTIONS(861), - [anon_sym_ATinterface] = ACTIONS(859), - [anon_sym_interface] = ACTIONS(861), - [anon_sym_byte] = ACTIONS(861), - [anon_sym_short] = ACTIONS(861), - [anon_sym_int] = ACTIONS(861), - [anon_sym_long] = ACTIONS(861), - [anon_sym_char] = ACTIONS(861), - [anon_sym_float] = ACTIONS(861), - [anon_sym_double] = ACTIONS(861), - [sym_boolean_type] = ACTIONS(861), - [sym_void_type] = ACTIONS(861), - [sym_this] = ACTIONS(861), - [sym_super] = ACTIONS(861), + [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(864), + [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), + [anon_sym_DQUOTE] = ACTIONS(864), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(862), + [sym_null_literal] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(864), + [anon_sym_DASH] = ACTIONS(864), + [anon_sym_final] = 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_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_with] = 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_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), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_decimal_integer_literal] = ACTIONS(865), - [sym_hex_integer_literal] = ACTIONS(865), - [sym_octal_integer_literal] = ACTIONS(865), - [sym_binary_integer_literal] = ACTIONS(863), - [sym_decimal_floating_point_literal] = ACTIONS(863), - [sym_hex_floating_point_literal] = ACTIONS(865), - [sym_true] = ACTIONS(865), - [sym_false] = ACTIONS(865), - [sym_character_literal] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [anon_sym_RBRACE] = ACTIONS(863), - [sym_null_literal] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_final] = ACTIONS(865), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(863), - [anon_sym_DASH_DASH] = ACTIONS(863), - [anon_sym_new] = ACTIONS(865), - [anon_sym_class] = ACTIONS(865), - [anon_sym_switch] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_case] = ACTIONS(865), - [anon_sym_default] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_assert] = ACTIONS(865), - [anon_sym_do] = ACTIONS(865), - [anon_sym_while] = ACTIONS(865), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(865), - [anon_sym_return] = ACTIONS(865), - [anon_sym_yield] = ACTIONS(865), - [anon_sym_synchronized] = ACTIONS(865), - [anon_sym_throw] = ACTIONS(865), - [anon_sym_try] = ACTIONS(865), - [anon_sym_if] = ACTIONS(865), - [anon_sym_else] = ACTIONS(865), - [anon_sym_for] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(865), - [anon_sym_open] = ACTIONS(865), - [anon_sym_module] = ACTIONS(865), - [anon_sym_static] = ACTIONS(865), - [anon_sym_with] = ACTIONS(865), - [anon_sym_package] = ACTIONS(865), - [anon_sym_import] = ACTIONS(865), - [anon_sym_enum] = ACTIONS(865), - [anon_sym_public] = ACTIONS(865), - [anon_sym_protected] = ACTIONS(865), - [anon_sym_private] = ACTIONS(865), - [anon_sym_abstract] = ACTIONS(865), - [anon_sym_strictfp] = ACTIONS(865), - [anon_sym_native] = ACTIONS(865), - [anon_sym_transient] = ACTIONS(865), - [anon_sym_volatile] = ACTIONS(865), - [anon_sym_sealed] = ACTIONS(865), - [anon_sym_non_DASHsealed] = ACTIONS(863), - [anon_sym_record] = ACTIONS(865), - [anon_sym_ATinterface] = ACTIONS(863), - [anon_sym_interface] = ACTIONS(865), - [anon_sym_byte] = ACTIONS(865), - [anon_sym_short] = ACTIONS(865), - [anon_sym_int] = ACTIONS(865), - [anon_sym_long] = ACTIONS(865), - [anon_sym_char] = ACTIONS(865), - [anon_sym_float] = ACTIONS(865), - [anon_sym_double] = ACTIONS(865), - [sym_boolean_type] = ACTIONS(865), - [sym_void_type] = ACTIONS(865), - [sym_this] = ACTIONS(865), - [sym_super] = ACTIONS(865), + [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(868), + [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), + [anon_sym_DQUOTE] = ACTIONS(868), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [sym_null_literal] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_PLUS] = ACTIONS(868), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_final] = 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_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_with] = 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_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), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(867), - [sym_identifier] = ACTIONS(869), - [sym_decimal_integer_literal] = ACTIONS(869), - [sym_hex_integer_literal] = ACTIONS(869), - [sym_octal_integer_literal] = ACTIONS(869), - [sym_binary_integer_literal] = ACTIONS(867), - [sym_decimal_floating_point_literal] = ACTIONS(867), - [sym_hex_floating_point_literal] = ACTIONS(869), - [sym_true] = ACTIONS(869), - [sym_false] = ACTIONS(869), - [sym_character_literal] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(867), - [anon_sym_RBRACE] = ACTIONS(867), - [sym_null_literal] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_final] = ACTIONS(869), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(867), - [anon_sym_PLUS_PLUS] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_new] = ACTIONS(869), - [anon_sym_class] = ACTIONS(869), - [anon_sym_switch] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_case] = ACTIONS(869), - [anon_sym_default] = ACTIONS(869), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_assert] = ACTIONS(869), - [anon_sym_do] = ACTIONS(869), - [anon_sym_while] = ACTIONS(869), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(869), - [anon_sym_return] = ACTIONS(869), - [anon_sym_yield] = ACTIONS(869), - [anon_sym_synchronized] = ACTIONS(869), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_try] = ACTIONS(869), - [anon_sym_if] = ACTIONS(869), - [anon_sym_else] = ACTIONS(869), - [anon_sym_for] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym_open] = ACTIONS(869), - [anon_sym_module] = ACTIONS(869), - [anon_sym_static] = ACTIONS(869), - [anon_sym_with] = ACTIONS(869), - [anon_sym_package] = ACTIONS(869), - [anon_sym_import] = ACTIONS(869), - [anon_sym_enum] = ACTIONS(869), - [anon_sym_public] = ACTIONS(869), - [anon_sym_protected] = ACTIONS(869), - [anon_sym_private] = ACTIONS(869), - [anon_sym_abstract] = ACTIONS(869), - [anon_sym_strictfp] = ACTIONS(869), - [anon_sym_native] = ACTIONS(869), - [anon_sym_transient] = ACTIONS(869), - [anon_sym_volatile] = ACTIONS(869), - [anon_sym_sealed] = ACTIONS(869), - [anon_sym_non_DASHsealed] = ACTIONS(867), - [anon_sym_record] = ACTIONS(869), - [anon_sym_ATinterface] = ACTIONS(867), - [anon_sym_interface] = ACTIONS(869), - [anon_sym_byte] = ACTIONS(869), - [anon_sym_short] = ACTIONS(869), - [anon_sym_int] = ACTIONS(869), - [anon_sym_long] = ACTIONS(869), - [anon_sym_char] = ACTIONS(869), - [anon_sym_float] = ACTIONS(869), - [anon_sym_double] = ACTIONS(869), - [sym_boolean_type] = ACTIONS(869), - [sym_void_type] = ACTIONS(869), - [sym_this] = ACTIONS(869), - [sym_super] = ACTIONS(869), + [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(872), + [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), + [anon_sym_DQUOTE] = ACTIONS(872), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(870), + [anon_sym_RBRACE] = ACTIONS(870), + [sym_null_literal] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LT] = 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_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_with] = 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), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(871), - [sym_identifier] = ACTIONS(873), - [sym_decimal_integer_literal] = ACTIONS(873), - [sym_hex_integer_literal] = ACTIONS(873), - [sym_octal_integer_literal] = ACTIONS(873), - [sym_binary_integer_literal] = ACTIONS(871), - [sym_decimal_floating_point_literal] = ACTIONS(871), - [sym_hex_floating_point_literal] = ACTIONS(873), - [sym_true] = ACTIONS(873), - [sym_false] = ACTIONS(873), - [sym_character_literal] = ACTIONS(871), - [anon_sym_DQUOTE] = ACTIONS(873), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(871), - [anon_sym_RBRACE] = ACTIONS(871), - [sym_null_literal] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(871), - [anon_sym_LT] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_final] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_PLUS_PLUS] = ACTIONS(871), - [anon_sym_DASH_DASH] = ACTIONS(871), - [anon_sym_new] = ACTIONS(873), - [anon_sym_class] = ACTIONS(873), - [anon_sym_switch] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_case] = ACTIONS(873), - [anon_sym_default] = ACTIONS(873), - [anon_sym_SEMI] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_do] = ACTIONS(873), - [anon_sym_while] = ACTIONS(873), - [anon_sym_break] = ACTIONS(873), - [anon_sym_continue] = ACTIONS(873), - [anon_sym_return] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(873), - [anon_sym_synchronized] = ACTIONS(873), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_try] = ACTIONS(873), - [anon_sym_if] = ACTIONS(873), - [anon_sym_else] = ACTIONS(873), - [anon_sym_for] = ACTIONS(873), - [anon_sym_AT] = ACTIONS(873), - [anon_sym_open] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_static] = ACTIONS(873), - [anon_sym_with] = ACTIONS(873), - [anon_sym_package] = ACTIONS(873), - [anon_sym_import] = ACTIONS(873), - [anon_sym_enum] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_abstract] = ACTIONS(873), - [anon_sym_strictfp] = ACTIONS(873), - [anon_sym_native] = ACTIONS(873), - [anon_sym_transient] = ACTIONS(873), - [anon_sym_volatile] = ACTIONS(873), - [anon_sym_sealed] = ACTIONS(873), - [anon_sym_non_DASHsealed] = ACTIONS(871), - [anon_sym_record] = ACTIONS(873), - [anon_sym_ATinterface] = ACTIONS(871), - [anon_sym_interface] = ACTIONS(873), - [anon_sym_byte] = ACTIONS(873), - [anon_sym_short] = ACTIONS(873), - [anon_sym_int] = ACTIONS(873), - [anon_sym_long] = ACTIONS(873), - [anon_sym_char] = ACTIONS(873), - [anon_sym_float] = ACTIONS(873), - [anon_sym_double] = ACTIONS(873), - [sym_boolean_type] = ACTIONS(873), - [sym_void_type] = ACTIONS(873), - [sym_this] = ACTIONS(873), - [sym_super] = ACTIONS(873), + [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(876), + [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), + [anon_sym_DQUOTE] = ACTIONS(876), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [sym_null_literal] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_LT] = 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_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_with] = 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), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(875), - [sym_identifier] = ACTIONS(877), - [sym_decimal_integer_literal] = ACTIONS(877), - [sym_hex_integer_literal] = ACTIONS(877), - [sym_octal_integer_literal] = ACTIONS(877), - [sym_binary_integer_literal] = ACTIONS(875), - [sym_decimal_floating_point_literal] = ACTIONS(875), - [sym_hex_floating_point_literal] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_character_literal] = ACTIONS(875), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(875), - [anon_sym_RBRACE] = ACTIONS(875), - [sym_null_literal] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_final] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(875), - [anon_sym_TILDE] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_DASH_DASH] = ACTIONS(875), - [anon_sym_new] = ACTIONS(877), - [anon_sym_class] = ACTIONS(877), - [anon_sym_switch] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(875), - [anon_sym_case] = ACTIONS(877), - [anon_sym_default] = ACTIONS(877), - [anon_sym_SEMI] = ACTIONS(875), - [anon_sym_assert] = ACTIONS(877), - [anon_sym_do] = ACTIONS(877), - [anon_sym_while] = ACTIONS(877), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_yield] = ACTIONS(877), - [anon_sym_synchronized] = ACTIONS(877), - [anon_sym_throw] = ACTIONS(877), - [anon_sym_try] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_else] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_AT] = ACTIONS(877), - [anon_sym_open] = ACTIONS(877), - [anon_sym_module] = ACTIONS(877), - [anon_sym_static] = ACTIONS(877), - [anon_sym_with] = ACTIONS(877), - [anon_sym_package] = ACTIONS(877), - [anon_sym_import] = ACTIONS(877), - [anon_sym_enum] = ACTIONS(877), - [anon_sym_public] = ACTIONS(877), - [anon_sym_protected] = ACTIONS(877), - [anon_sym_private] = ACTIONS(877), - [anon_sym_abstract] = ACTIONS(877), - [anon_sym_strictfp] = ACTIONS(877), - [anon_sym_native] = ACTIONS(877), - [anon_sym_transient] = ACTIONS(877), - [anon_sym_volatile] = ACTIONS(877), - [anon_sym_sealed] = ACTIONS(877), - [anon_sym_non_DASHsealed] = ACTIONS(875), - [anon_sym_record] = ACTIONS(877), - [anon_sym_ATinterface] = ACTIONS(875), - [anon_sym_interface] = ACTIONS(877), - [anon_sym_byte] = ACTIONS(877), - [anon_sym_short] = ACTIONS(877), - [anon_sym_int] = ACTIONS(877), - [anon_sym_long] = ACTIONS(877), - [anon_sym_char] = ACTIONS(877), - [anon_sym_float] = ACTIONS(877), - [anon_sym_double] = ACTIONS(877), - [sym_boolean_type] = ACTIONS(877), - [sym_void_type] = ACTIONS(877), - [sym_this] = ACTIONS(877), - [sym_super] = ACTIONS(877), + [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(880), + [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), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [sym_null_literal] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LT] = 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_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_with] = 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), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(879), - [sym_identifier] = ACTIONS(881), - [sym_decimal_integer_literal] = ACTIONS(881), - [sym_hex_integer_literal] = ACTIONS(881), - [sym_octal_integer_literal] = ACTIONS(881), - [sym_binary_integer_literal] = ACTIONS(879), - [sym_decimal_floating_point_literal] = ACTIONS(879), - [sym_hex_floating_point_literal] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_character_literal] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(879), - [sym_null_literal] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_final] = ACTIONS(881), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_new] = ACTIONS(881), - [anon_sym_class] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_case] = ACTIONS(881), - [anon_sym_default] = ACTIONS(881), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_assert] = ACTIONS(881), - [anon_sym_do] = ACTIONS(881), - [anon_sym_while] = ACTIONS(881), - [anon_sym_break] = ACTIONS(881), - [anon_sym_continue] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(881), - [anon_sym_synchronized] = ACTIONS(881), - [anon_sym_throw] = ACTIONS(881), - [anon_sym_try] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_else] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_AT] = ACTIONS(881), - [anon_sym_open] = ACTIONS(881), - [anon_sym_module] = ACTIONS(881), - [anon_sym_static] = ACTIONS(881), - [anon_sym_with] = ACTIONS(881), - [anon_sym_package] = ACTIONS(881), - [anon_sym_import] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(881), - [anon_sym_public] = ACTIONS(881), - [anon_sym_protected] = ACTIONS(881), - [anon_sym_private] = ACTIONS(881), - [anon_sym_abstract] = ACTIONS(881), - [anon_sym_strictfp] = ACTIONS(881), - [anon_sym_native] = ACTIONS(881), - [anon_sym_transient] = ACTIONS(881), - [anon_sym_volatile] = ACTIONS(881), - [anon_sym_sealed] = ACTIONS(881), - [anon_sym_non_DASHsealed] = ACTIONS(879), - [anon_sym_record] = ACTIONS(881), - [anon_sym_ATinterface] = ACTIONS(879), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_byte] = ACTIONS(881), - [anon_sym_short] = ACTIONS(881), - [anon_sym_int] = ACTIONS(881), - [anon_sym_long] = ACTIONS(881), - [anon_sym_char] = ACTIONS(881), - [anon_sym_float] = ACTIONS(881), - [anon_sym_double] = ACTIONS(881), - [sym_boolean_type] = ACTIONS(881), - [sym_void_type] = ACTIONS(881), - [sym_this] = ACTIONS(881), - [sym_super] = ACTIONS(881), + [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(884), + [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), + [anon_sym_DQUOTE] = ACTIONS(884), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [sym_null_literal] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LT] = 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_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_with] = 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), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(883), - [sym_identifier] = ACTIONS(885), - [sym_decimal_integer_literal] = ACTIONS(885), - [sym_hex_integer_literal] = ACTIONS(885), - [sym_octal_integer_literal] = ACTIONS(885), - [sym_binary_integer_literal] = ACTIONS(883), - [sym_decimal_floating_point_literal] = ACTIONS(883), - [sym_hex_floating_point_literal] = ACTIONS(885), - [sym_true] = ACTIONS(885), - [sym_false] = ACTIONS(885), - [sym_character_literal] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [sym_null_literal] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_final] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_TILDE] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(883), - [anon_sym_new] = ACTIONS(885), - [anon_sym_class] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_case] = ACTIONS(885), - [anon_sym_default] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(883), - [anon_sym_assert] = ACTIONS(885), - [anon_sym_do] = ACTIONS(885), - [anon_sym_while] = ACTIONS(885), - [anon_sym_break] = ACTIONS(885), - [anon_sym_continue] = ACTIONS(885), - [anon_sym_return] = ACTIONS(885), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_synchronized] = ACTIONS(885), - [anon_sym_throw] = ACTIONS(885), - [anon_sym_try] = ACTIONS(885), - [anon_sym_if] = ACTIONS(885), - [anon_sym_else] = ACTIONS(885), - [anon_sym_for] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(885), - [anon_sym_open] = ACTIONS(885), - [anon_sym_module] = ACTIONS(885), - [anon_sym_static] = ACTIONS(885), - [anon_sym_with] = ACTIONS(885), - [anon_sym_package] = ACTIONS(885), - [anon_sym_import] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_public] = ACTIONS(885), - [anon_sym_protected] = ACTIONS(885), - [anon_sym_private] = ACTIONS(885), - [anon_sym_abstract] = ACTIONS(885), - [anon_sym_strictfp] = ACTIONS(885), - [anon_sym_native] = ACTIONS(885), - [anon_sym_transient] = ACTIONS(885), - [anon_sym_volatile] = ACTIONS(885), - [anon_sym_sealed] = ACTIONS(885), - [anon_sym_non_DASHsealed] = ACTIONS(883), - [anon_sym_record] = ACTIONS(885), - [anon_sym_ATinterface] = ACTIONS(883), - [anon_sym_interface] = ACTIONS(885), - [anon_sym_byte] = ACTIONS(885), - [anon_sym_short] = ACTIONS(885), - [anon_sym_int] = ACTIONS(885), - [anon_sym_long] = ACTIONS(885), - [anon_sym_char] = ACTIONS(885), - [anon_sym_float] = ACTIONS(885), - [anon_sym_double] = ACTIONS(885), - [sym_boolean_type] = ACTIONS(885), - [sym_void_type] = ACTIONS(885), - [sym_this] = ACTIONS(885), - [sym_super] = ACTIONS(885), + [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(888), + [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), + [anon_sym_DQUOTE] = ACTIONS(888), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(886), + [anon_sym_RBRACE] = ACTIONS(886), + [sym_null_literal] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LT] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_final] = 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_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_with] = 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_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), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(887), - [sym_identifier] = ACTIONS(889), - [sym_decimal_integer_literal] = ACTIONS(889), - [sym_hex_integer_literal] = ACTIONS(889), - [sym_octal_integer_literal] = ACTIONS(889), - [sym_binary_integer_literal] = ACTIONS(887), - [sym_decimal_floating_point_literal] = ACTIONS(887), - [sym_hex_floating_point_literal] = ACTIONS(889), - [sym_true] = ACTIONS(889), - [sym_false] = ACTIONS(889), - [sym_character_literal] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(889), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(887), - [sym_null_literal] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_final] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(887), - [anon_sym_TILDE] = ACTIONS(887), - [anon_sym_PLUS_PLUS] = ACTIONS(887), - [anon_sym_DASH_DASH] = ACTIONS(887), - [anon_sym_new] = ACTIONS(889), - [anon_sym_class] = ACTIONS(889), - [anon_sym_switch] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_case] = ACTIONS(889), - [anon_sym_default] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(887), - [anon_sym_assert] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_yield] = ACTIONS(889), - [anon_sym_synchronized] = ACTIONS(889), - [anon_sym_throw] = ACTIONS(889), - [anon_sym_try] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(889), - [anon_sym_open] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_static] = ACTIONS(889), - [anon_sym_with] = ACTIONS(889), - [anon_sym_package] = ACTIONS(889), - [anon_sym_import] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(889), - [anon_sym_public] = ACTIONS(889), - [anon_sym_protected] = ACTIONS(889), - [anon_sym_private] = ACTIONS(889), - [anon_sym_abstract] = ACTIONS(889), - [anon_sym_strictfp] = ACTIONS(889), - [anon_sym_native] = ACTIONS(889), - [anon_sym_transient] = ACTIONS(889), - [anon_sym_volatile] = ACTIONS(889), - [anon_sym_sealed] = ACTIONS(889), - [anon_sym_non_DASHsealed] = ACTIONS(887), - [anon_sym_record] = ACTIONS(889), - [anon_sym_ATinterface] = ACTIONS(887), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_byte] = ACTIONS(889), - [anon_sym_short] = ACTIONS(889), - [anon_sym_int] = ACTIONS(889), - [anon_sym_long] = ACTIONS(889), - [anon_sym_char] = ACTIONS(889), - [anon_sym_float] = ACTIONS(889), - [anon_sym_double] = ACTIONS(889), - [sym_boolean_type] = ACTIONS(889), - [sym_void_type] = ACTIONS(889), - [sym_this] = ACTIONS(889), - [sym_super] = ACTIONS(889), + [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(892), + [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), + [anon_sym_DQUOTE] = ACTIONS(892), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), + [sym_null_literal] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_final] = 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_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_with] = 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_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), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_decimal_integer_literal] = ACTIONS(893), - [sym_hex_integer_literal] = ACTIONS(893), - [sym_octal_integer_literal] = ACTIONS(893), - [sym_binary_integer_literal] = ACTIONS(891), - [sym_decimal_floating_point_literal] = ACTIONS(891), - [sym_hex_floating_point_literal] = ACTIONS(893), - [sym_true] = ACTIONS(893), - [sym_false] = ACTIONS(893), - [sym_character_literal] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(893), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [sym_null_literal] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_final] = ACTIONS(893), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_new] = ACTIONS(893), - [anon_sym_class] = ACTIONS(893), - [anon_sym_switch] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_case] = ACTIONS(893), - [anon_sym_default] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_assert] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_yield] = ACTIONS(893), - [anon_sym_synchronized] = ACTIONS(893), - [anon_sym_throw] = ACTIONS(893), - [anon_sym_try] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_open] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_static] = ACTIONS(893), - [anon_sym_with] = ACTIONS(893), - [anon_sym_package] = ACTIONS(893), - [anon_sym_import] = ACTIONS(893), - [anon_sym_enum] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_abstract] = ACTIONS(893), - [anon_sym_strictfp] = ACTIONS(893), - [anon_sym_native] = ACTIONS(893), - [anon_sym_transient] = ACTIONS(893), - [anon_sym_volatile] = ACTIONS(893), - [anon_sym_sealed] = ACTIONS(893), - [anon_sym_non_DASHsealed] = ACTIONS(891), - [anon_sym_record] = ACTIONS(893), - [anon_sym_ATinterface] = ACTIONS(891), - [anon_sym_interface] = ACTIONS(893), - [anon_sym_byte] = ACTIONS(893), - [anon_sym_short] = ACTIONS(893), - [anon_sym_int] = ACTIONS(893), - [anon_sym_long] = ACTIONS(893), - [anon_sym_char] = ACTIONS(893), - [anon_sym_float] = ACTIONS(893), - [anon_sym_double] = ACTIONS(893), - [sym_boolean_type] = ACTIONS(893), - [sym_void_type] = ACTIONS(893), - [sym_this] = ACTIONS(893), - [sym_super] = ACTIONS(893), + [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(896), + [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), + [anon_sym_DQUOTE] = ACTIONS(896), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(894), + [sym_null_literal] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_final] = 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_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_with] = 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_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), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(895), - [sym_identifier] = ACTIONS(897), - [sym_decimal_integer_literal] = ACTIONS(897), - [sym_hex_integer_literal] = ACTIONS(897), - [sym_octal_integer_literal] = ACTIONS(897), - [sym_binary_integer_literal] = ACTIONS(895), - [sym_decimal_floating_point_literal] = ACTIONS(895), - [sym_hex_floating_point_literal] = ACTIONS(897), - [sym_true] = ACTIONS(897), - [sym_false] = ACTIONS(897), - [sym_character_literal] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(897), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [sym_null_literal] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_LT] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_final] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_DASH_DASH] = ACTIONS(895), - [anon_sym_new] = ACTIONS(897), - [anon_sym_class] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_case] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_assert] = ACTIONS(897), - [anon_sym_do] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_yield] = ACTIONS(897), - [anon_sym_synchronized] = ACTIONS(897), - [anon_sym_throw] = ACTIONS(897), - [anon_sym_try] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_else] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_AT] = ACTIONS(897), - [anon_sym_open] = ACTIONS(897), - [anon_sym_module] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_with] = ACTIONS(897), - [anon_sym_package] = ACTIONS(897), - [anon_sym_import] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_public] = ACTIONS(897), - [anon_sym_protected] = ACTIONS(897), - [anon_sym_private] = ACTIONS(897), - [anon_sym_abstract] = ACTIONS(897), - [anon_sym_strictfp] = ACTIONS(897), - [anon_sym_native] = ACTIONS(897), - [anon_sym_transient] = ACTIONS(897), - [anon_sym_volatile] = ACTIONS(897), - [anon_sym_sealed] = ACTIONS(897), - [anon_sym_non_DASHsealed] = ACTIONS(895), - [anon_sym_record] = ACTIONS(897), - [anon_sym_ATinterface] = ACTIONS(895), - [anon_sym_interface] = ACTIONS(897), - [anon_sym_byte] = ACTIONS(897), - [anon_sym_short] = ACTIONS(897), - [anon_sym_int] = ACTIONS(897), - [anon_sym_long] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_float] = ACTIONS(897), - [anon_sym_double] = ACTIONS(897), - [sym_boolean_type] = ACTIONS(897), - [sym_void_type] = ACTIONS(897), - [sym_this] = ACTIONS(897), - [sym_super] = ACTIONS(897), + [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(900), + [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), + [anon_sym_DQUOTE] = ACTIONS(900), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(898), + [sym_null_literal] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_final] = 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_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_with] = 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_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), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(899), - [sym_identifier] = ACTIONS(901), - [sym_decimal_integer_literal] = ACTIONS(901), - [sym_hex_integer_literal] = ACTIONS(901), - [sym_octal_integer_literal] = ACTIONS(901), - [sym_binary_integer_literal] = ACTIONS(899), - [sym_decimal_floating_point_literal] = ACTIONS(899), - [sym_hex_floating_point_literal] = ACTIONS(901), - [sym_true] = ACTIONS(901), - [sym_false] = ACTIONS(901), - [sym_character_literal] = ACTIONS(899), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [sym_null_literal] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(899), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_final] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(899), - [anon_sym_DASH_DASH] = ACTIONS(899), - [anon_sym_new] = ACTIONS(901), - [anon_sym_class] = ACTIONS(901), - [anon_sym_switch] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_case] = ACTIONS(901), - [anon_sym_default] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_assert] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_synchronized] = ACTIONS(901), - [anon_sym_throw] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_else] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_open] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_static] = ACTIONS(901), - [anon_sym_with] = ACTIONS(901), - [anon_sym_package] = ACTIONS(901), - [anon_sym_import] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(901), - [anon_sym_public] = ACTIONS(901), - [anon_sym_protected] = ACTIONS(901), - [anon_sym_private] = ACTIONS(901), - [anon_sym_abstract] = ACTIONS(901), - [anon_sym_strictfp] = ACTIONS(901), - [anon_sym_native] = ACTIONS(901), - [anon_sym_transient] = ACTIONS(901), - [anon_sym_volatile] = ACTIONS(901), - [anon_sym_sealed] = ACTIONS(901), - [anon_sym_non_DASHsealed] = ACTIONS(899), - [anon_sym_record] = ACTIONS(901), - [anon_sym_ATinterface] = ACTIONS(899), - [anon_sym_interface] = ACTIONS(901), - [anon_sym_byte] = ACTIONS(901), - [anon_sym_short] = ACTIONS(901), - [anon_sym_int] = ACTIONS(901), - [anon_sym_long] = ACTIONS(901), - [anon_sym_char] = ACTIONS(901), - [anon_sym_float] = ACTIONS(901), - [anon_sym_double] = ACTIONS(901), - [sym_boolean_type] = ACTIONS(901), - [sym_void_type] = ACTIONS(901), - [sym_this] = ACTIONS(901), - [sym_super] = ACTIONS(901), + [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(904), + [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), + [anon_sym_DQUOTE] = ACTIONS(904), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [sym_null_literal] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_final] = 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_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_with] = 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_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), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(903), - [sym_identifier] = ACTIONS(905), - [sym_decimal_integer_literal] = ACTIONS(905), - [sym_hex_integer_literal] = ACTIONS(905), - [sym_octal_integer_literal] = ACTIONS(905), - [sym_binary_integer_literal] = ACTIONS(903), - [sym_decimal_floating_point_literal] = ACTIONS(903), - [sym_hex_floating_point_literal] = ACTIONS(905), - [sym_true] = ACTIONS(905), - [sym_false] = ACTIONS(905), - [sym_character_literal] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [sym_null_literal] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_final] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_new] = ACTIONS(905), - [anon_sym_class] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_case] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_do] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_break] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(905), - [anon_sym_return] = ACTIONS(905), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_synchronized] = ACTIONS(905), - [anon_sym_throw] = ACTIONS(905), - [anon_sym_try] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_else] = ACTIONS(905), - [anon_sym_for] = ACTIONS(905), - [anon_sym_AT] = ACTIONS(905), - [anon_sym_open] = ACTIONS(905), - [anon_sym_module] = ACTIONS(905), - [anon_sym_static] = ACTIONS(905), - [anon_sym_with] = ACTIONS(905), - [anon_sym_package] = ACTIONS(905), - [anon_sym_import] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(905), - [anon_sym_public] = ACTIONS(905), - [anon_sym_protected] = ACTIONS(905), - [anon_sym_private] = ACTIONS(905), - [anon_sym_abstract] = ACTIONS(905), - [anon_sym_strictfp] = ACTIONS(905), - [anon_sym_native] = ACTIONS(905), - [anon_sym_transient] = ACTIONS(905), - [anon_sym_volatile] = ACTIONS(905), - [anon_sym_sealed] = ACTIONS(905), - [anon_sym_non_DASHsealed] = ACTIONS(903), - [anon_sym_record] = ACTIONS(905), - [anon_sym_ATinterface] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(905), - [anon_sym_byte] = ACTIONS(905), - [anon_sym_short] = ACTIONS(905), - [anon_sym_int] = ACTIONS(905), - [anon_sym_long] = ACTIONS(905), - [anon_sym_char] = ACTIONS(905), - [anon_sym_float] = ACTIONS(905), - [anon_sym_double] = ACTIONS(905), - [sym_boolean_type] = ACTIONS(905), - [sym_void_type] = ACTIONS(905), - [sym_this] = ACTIONS(905), - [sym_super] = ACTIONS(905), + [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(908), + [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), + [anon_sym_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [sym_null_literal] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_final] = 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_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_with] = 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_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), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(907), - [sym_identifier] = ACTIONS(909), - [sym_decimal_integer_literal] = ACTIONS(909), - [sym_hex_integer_literal] = ACTIONS(909), - [sym_octal_integer_literal] = ACTIONS(909), - [sym_binary_integer_literal] = ACTIONS(907), - [sym_decimal_floating_point_literal] = ACTIONS(907), - [sym_hex_floating_point_literal] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [sym_false] = ACTIONS(909), - [sym_character_literal] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(909), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [sym_null_literal] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_final] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_new] = ACTIONS(909), - [anon_sym_class] = ACTIONS(909), - [anon_sym_switch] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_case] = ACTIONS(909), - [anon_sym_default] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_yield] = ACTIONS(909), - [anon_sym_synchronized] = ACTIONS(909), - [anon_sym_throw] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym_open] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_static] = ACTIONS(909), - [anon_sym_with] = ACTIONS(909), - [anon_sym_package] = ACTIONS(909), - [anon_sym_import] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(909), - [anon_sym_public] = ACTIONS(909), - [anon_sym_protected] = ACTIONS(909), - [anon_sym_private] = ACTIONS(909), - [anon_sym_abstract] = ACTIONS(909), - [anon_sym_strictfp] = ACTIONS(909), - [anon_sym_native] = ACTIONS(909), - [anon_sym_transient] = ACTIONS(909), - [anon_sym_volatile] = ACTIONS(909), - [anon_sym_sealed] = ACTIONS(909), - [anon_sym_non_DASHsealed] = ACTIONS(907), - [anon_sym_record] = ACTIONS(909), - [anon_sym_ATinterface] = ACTIONS(907), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_byte] = ACTIONS(909), - [anon_sym_short] = ACTIONS(909), - [anon_sym_int] = ACTIONS(909), - [anon_sym_long] = ACTIONS(909), - [anon_sym_char] = ACTIONS(909), - [anon_sym_float] = ACTIONS(909), - [anon_sym_double] = ACTIONS(909), - [sym_boolean_type] = ACTIONS(909), - [sym_void_type] = ACTIONS(909), - [sym_this] = ACTIONS(909), - [sym_super] = ACTIONS(909), + [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(912), + [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), + [anon_sym_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [sym_null_literal] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_final] = 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_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_with] = 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(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), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(911), - [sym_identifier] = ACTIONS(913), - [sym_decimal_integer_literal] = ACTIONS(913), - [sym_hex_integer_literal] = ACTIONS(913), - [sym_octal_integer_literal] = ACTIONS(913), - [sym_binary_integer_literal] = ACTIONS(911), - [sym_decimal_floating_point_literal] = ACTIONS(911), - [sym_hex_floating_point_literal] = ACTIONS(913), - [sym_true] = ACTIONS(913), - [sym_false] = ACTIONS(913), - [sym_character_literal] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [sym_null_literal] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_final] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym_new] = ACTIONS(913), - [anon_sym_class] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_assert] = ACTIONS(913), - [anon_sym_do] = ACTIONS(913), - [anon_sym_while] = ACTIONS(913), - [anon_sym_break] = ACTIONS(913), - [anon_sym_continue] = ACTIONS(913), - [anon_sym_return] = ACTIONS(913), - [anon_sym_yield] = ACTIONS(913), - [anon_sym_synchronized] = ACTIONS(913), - [anon_sym_throw] = ACTIONS(913), - [anon_sym_try] = ACTIONS(913), - [anon_sym_if] = ACTIONS(913), - [anon_sym_else] = ACTIONS(913), - [anon_sym_for] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym_open] = ACTIONS(913), - [anon_sym_module] = ACTIONS(913), - [anon_sym_static] = ACTIONS(913), - [anon_sym_with] = ACTIONS(913), - [anon_sym_package] = ACTIONS(913), - [anon_sym_import] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(913), - [anon_sym_public] = ACTIONS(913), - [anon_sym_protected] = ACTIONS(913), - [anon_sym_private] = ACTIONS(913), - [anon_sym_abstract] = ACTIONS(913), - [anon_sym_strictfp] = ACTIONS(913), - [anon_sym_native] = ACTIONS(913), - [anon_sym_transient] = ACTIONS(913), - [anon_sym_volatile] = ACTIONS(913), - [anon_sym_sealed] = ACTIONS(913), - [anon_sym_non_DASHsealed] = ACTIONS(911), - [anon_sym_record] = ACTIONS(913), - [anon_sym_ATinterface] = ACTIONS(911), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_byte] = ACTIONS(913), - [anon_sym_short] = ACTIONS(913), - [anon_sym_int] = ACTIONS(913), - [anon_sym_long] = ACTIONS(913), - [anon_sym_char] = ACTIONS(913), - [anon_sym_float] = ACTIONS(913), - [anon_sym_double] = ACTIONS(913), - [sym_boolean_type] = ACTIONS(913), - [sym_void_type] = ACTIONS(913), - [sym_this] = ACTIONS(913), - [sym_super] = ACTIONS(913), + [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(916), + [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), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [sym_null_literal] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_final] = 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_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_with] = 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_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), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(915), - [sym_identifier] = ACTIONS(917), - [sym_decimal_integer_literal] = ACTIONS(917), - [sym_hex_integer_literal] = ACTIONS(917), - [sym_octal_integer_literal] = ACTIONS(917), - [sym_binary_integer_literal] = ACTIONS(915), - [sym_decimal_floating_point_literal] = ACTIONS(915), - [sym_hex_floating_point_literal] = ACTIONS(917), - [sym_true] = ACTIONS(917), - [sym_false] = ACTIONS(917), - [sym_character_literal] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(917), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(915), - [anon_sym_RBRACE] = ACTIONS(915), - [sym_null_literal] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_final] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(915), - [anon_sym_DASH_DASH] = ACTIONS(915), - [anon_sym_new] = ACTIONS(917), - [anon_sym_class] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(917), - [anon_sym_synchronized] = ACTIONS(917), - [anon_sym_throw] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym_open] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_static] = ACTIONS(917), - [anon_sym_with] = ACTIONS(917), - [anon_sym_package] = ACTIONS(917), - [anon_sym_import] = ACTIONS(917), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_public] = ACTIONS(917), - [anon_sym_protected] = ACTIONS(917), - [anon_sym_private] = ACTIONS(917), - [anon_sym_abstract] = ACTIONS(917), - [anon_sym_strictfp] = ACTIONS(917), - [anon_sym_native] = ACTIONS(917), - [anon_sym_transient] = ACTIONS(917), - [anon_sym_volatile] = ACTIONS(917), - [anon_sym_sealed] = ACTIONS(917), - [anon_sym_non_DASHsealed] = ACTIONS(915), - [anon_sym_record] = ACTIONS(917), - [anon_sym_ATinterface] = ACTIONS(915), - [anon_sym_interface] = ACTIONS(917), - [anon_sym_byte] = ACTIONS(917), - [anon_sym_short] = ACTIONS(917), - [anon_sym_int] = ACTIONS(917), - [anon_sym_long] = ACTIONS(917), - [anon_sym_char] = ACTIONS(917), - [anon_sym_float] = ACTIONS(917), - [anon_sym_double] = ACTIONS(917), - [sym_boolean_type] = ACTIONS(917), - [sym_void_type] = ACTIONS(917), - [sym_this] = ACTIONS(917), - [sym_super] = ACTIONS(917), + [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(920), + [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), + [anon_sym_DQUOTE] = ACTIONS(920), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(918), + [sym_null_literal] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_final] = 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_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_with] = 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_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), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(919), - [sym_identifier] = ACTIONS(921), - [sym_decimal_integer_literal] = ACTIONS(921), - [sym_hex_integer_literal] = ACTIONS(921), - [sym_octal_integer_literal] = ACTIONS(921), - [sym_binary_integer_literal] = ACTIONS(919), - [sym_decimal_floating_point_literal] = ACTIONS(919), - [sym_hex_floating_point_literal] = ACTIONS(921), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [sym_character_literal] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(921), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [sym_null_literal] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_final] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_TILDE] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_DASH_DASH] = ACTIONS(919), - [anon_sym_new] = ACTIONS(921), - [anon_sym_class] = ACTIONS(921), - [anon_sym_switch] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_case] = ACTIONS(921), - [anon_sym_default] = ACTIONS(921), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(921), - [anon_sym_do] = ACTIONS(921), - [anon_sym_while] = ACTIONS(921), - [anon_sym_break] = ACTIONS(921), - [anon_sym_continue] = ACTIONS(921), - [anon_sym_return] = ACTIONS(921), - [anon_sym_yield] = ACTIONS(921), - [anon_sym_synchronized] = ACTIONS(921), - [anon_sym_throw] = ACTIONS(921), - [anon_sym_try] = ACTIONS(921), - [anon_sym_if] = ACTIONS(921), - [anon_sym_else] = ACTIONS(921), - [anon_sym_for] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym_open] = ACTIONS(921), - [anon_sym_module] = ACTIONS(921), - [anon_sym_static] = ACTIONS(921), - [anon_sym_with] = ACTIONS(921), - [anon_sym_package] = ACTIONS(921), - [anon_sym_import] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(921), - [anon_sym_public] = ACTIONS(921), - [anon_sym_protected] = ACTIONS(921), - [anon_sym_private] = ACTIONS(921), - [anon_sym_abstract] = ACTIONS(921), - [anon_sym_strictfp] = ACTIONS(921), - [anon_sym_native] = ACTIONS(921), - [anon_sym_transient] = ACTIONS(921), - [anon_sym_volatile] = ACTIONS(921), - [anon_sym_sealed] = ACTIONS(921), - [anon_sym_non_DASHsealed] = ACTIONS(919), - [anon_sym_record] = ACTIONS(921), - [anon_sym_ATinterface] = ACTIONS(919), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_byte] = ACTIONS(921), - [anon_sym_short] = ACTIONS(921), - [anon_sym_int] = ACTIONS(921), - [anon_sym_long] = ACTIONS(921), - [anon_sym_char] = ACTIONS(921), - [anon_sym_float] = ACTIONS(921), - [anon_sym_double] = ACTIONS(921), - [sym_boolean_type] = ACTIONS(921), - [sym_void_type] = ACTIONS(921), - [sym_this] = ACTIONS(921), - [sym_super] = ACTIONS(921), + [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(924), + [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), + [anon_sym_RBRACE] = ACTIONS(922), + [sym_null_literal] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_LT] = 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_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_with] = 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), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(923), - [sym_identifier] = ACTIONS(925), - [sym_decimal_integer_literal] = ACTIONS(925), - [sym_hex_integer_literal] = ACTIONS(925), - [sym_octal_integer_literal] = ACTIONS(925), - [sym_binary_integer_literal] = ACTIONS(923), - [sym_decimal_floating_point_literal] = ACTIONS(923), - [sym_hex_floating_point_literal] = ACTIONS(925), - [sym_true] = ACTIONS(925), - [sym_false] = ACTIONS(925), - [sym_character_literal] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [sym_null_literal] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_final] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_new] = ACTIONS(925), - [anon_sym_class] = ACTIONS(925), - [anon_sym_switch] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_case] = ACTIONS(925), - [anon_sym_default] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_assert] = ACTIONS(925), - [anon_sym_do] = ACTIONS(925), - [anon_sym_while] = ACTIONS(925), - [anon_sym_break] = ACTIONS(925), - [anon_sym_continue] = ACTIONS(925), - [anon_sym_return] = ACTIONS(925), - [anon_sym_yield] = ACTIONS(925), - [anon_sym_synchronized] = ACTIONS(925), - [anon_sym_throw] = ACTIONS(925), - [anon_sym_try] = ACTIONS(925), - [anon_sym_if] = ACTIONS(925), - [anon_sym_else] = ACTIONS(925), - [anon_sym_for] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(925), - [anon_sym_open] = ACTIONS(925), - [anon_sym_module] = ACTIONS(925), - [anon_sym_static] = ACTIONS(925), - [anon_sym_with] = ACTIONS(925), - [anon_sym_package] = ACTIONS(925), - [anon_sym_import] = ACTIONS(925), - [anon_sym_enum] = ACTIONS(925), - [anon_sym_public] = ACTIONS(925), - [anon_sym_protected] = ACTIONS(925), - [anon_sym_private] = ACTIONS(925), - [anon_sym_abstract] = ACTIONS(925), - [anon_sym_strictfp] = ACTIONS(925), - [anon_sym_native] = ACTIONS(925), - [anon_sym_transient] = ACTIONS(925), - [anon_sym_volatile] = ACTIONS(925), - [anon_sym_sealed] = ACTIONS(925), - [anon_sym_non_DASHsealed] = ACTIONS(923), - [anon_sym_record] = ACTIONS(925), - [anon_sym_ATinterface] = ACTIONS(923), - [anon_sym_interface] = ACTIONS(925), - [anon_sym_byte] = ACTIONS(925), - [anon_sym_short] = ACTIONS(925), - [anon_sym_int] = ACTIONS(925), - [anon_sym_long] = ACTIONS(925), - [anon_sym_char] = ACTIONS(925), - [anon_sym_float] = ACTIONS(925), - [anon_sym_double] = ACTIONS(925), - [sym_boolean_type] = ACTIONS(925), - [sym_void_type] = ACTIONS(925), - [sym_this] = ACTIONS(925), - [sym_super] = ACTIONS(925), + [ts_builtin_sym_end] = ACTIONS(575), + [sym_identifier] = ACTIONS(577), + [sym_decimal_integer_literal] = ACTIONS(577), + [sym_hex_integer_literal] = ACTIONS(577), + [sym_octal_integer_literal] = ACTIONS(577), + [sym_binary_integer_literal] = ACTIONS(575), + [sym_decimal_floating_point_literal] = ACTIONS(575), + [sym_hex_floating_point_literal] = ACTIONS(577), + [sym_true] = ACTIONS(577), + [sym_false] = ACTIONS(577), + [sym_character_literal] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(575), + [sym_null_literal] = ACTIONS(577), + [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_final] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_new] = ACTIONS(577), + [anon_sym_class] = ACTIONS(577), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_case] = ACTIONS(577), + [anon_sym_default] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(575), + [anon_sym_assert] = ACTIONS(577), + [anon_sym_do] = ACTIONS(577), + [anon_sym_while] = ACTIONS(577), + [anon_sym_break] = ACTIONS(577), + [anon_sym_continue] = ACTIONS(577), + [anon_sym_return] = ACTIONS(577), + [anon_sym_yield] = ACTIONS(577), + [anon_sym_synchronized] = ACTIONS(577), + [anon_sym_throw] = ACTIONS(577), + [anon_sym_try] = ACTIONS(577), + [anon_sym_if] = ACTIONS(577), + [anon_sym_else] = ACTIONS(577), + [anon_sym_for] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(577), + [anon_sym_open] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_static] = ACTIONS(577), + [anon_sym_with] = ACTIONS(577), + [anon_sym_package] = ACTIONS(577), + [anon_sym_import] = ACTIONS(577), + [anon_sym_enum] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_abstract] = ACTIONS(577), + [anon_sym_strictfp] = ACTIONS(577), + [anon_sym_native] = ACTIONS(577), + [anon_sym_transient] = ACTIONS(577), + [anon_sym_volatile] = ACTIONS(577), + [anon_sym_sealed] = ACTIONS(577), + [anon_sym_non_DASHsealed] = ACTIONS(575), + [anon_sym_record] = ACTIONS(577), + [anon_sym_ATinterface] = ACTIONS(575), + [anon_sym_interface] = ACTIONS(577), + [anon_sym_byte] = ACTIONS(577), + [anon_sym_short] = ACTIONS(577), + [anon_sym_int] = ACTIONS(577), + [anon_sym_long] = ACTIONS(577), + [anon_sym_char] = ACTIONS(577), + [anon_sym_float] = ACTIONS(577), + [anon_sym_double] = ACTIONS(577), + [sym_boolean_type] = ACTIONS(577), + [sym_void_type] = ACTIONS(577), + [sym_this] = ACTIONS(577), + [sym_super] = ACTIONS(577), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(927), - [sym_identifier] = ACTIONS(929), - [sym_decimal_integer_literal] = ACTIONS(929), - [sym_hex_integer_literal] = ACTIONS(929), - [sym_octal_integer_literal] = ACTIONS(929), - [sym_binary_integer_literal] = ACTIONS(927), - [sym_decimal_floating_point_literal] = ACTIONS(927), - [sym_hex_floating_point_literal] = ACTIONS(929), - [sym_true] = ACTIONS(929), - [sym_false] = ACTIONS(929), - [sym_character_literal] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(929), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [sym_null_literal] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_DASH] = ACTIONS(929), - [anon_sym_final] = ACTIONS(929), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_TILDE] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_DASH_DASH] = ACTIONS(927), - [anon_sym_new] = ACTIONS(929), - [anon_sym_class] = ACTIONS(929), - [anon_sym_switch] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_case] = ACTIONS(929), - [anon_sym_default] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_assert] = ACTIONS(929), - [anon_sym_do] = ACTIONS(929), - [anon_sym_while] = ACTIONS(929), - [anon_sym_break] = ACTIONS(929), - [anon_sym_continue] = ACTIONS(929), - [anon_sym_return] = ACTIONS(929), - [anon_sym_yield] = ACTIONS(929), - [anon_sym_synchronized] = ACTIONS(929), - [anon_sym_throw] = ACTIONS(929), - [anon_sym_try] = ACTIONS(929), - [anon_sym_if] = ACTIONS(929), - [anon_sym_else] = ACTIONS(929), - [anon_sym_for] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(929), - [anon_sym_open] = ACTIONS(929), - [anon_sym_module] = ACTIONS(929), - [anon_sym_static] = ACTIONS(929), - [anon_sym_with] = ACTIONS(929), - [anon_sym_package] = ACTIONS(929), - [anon_sym_import] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(929), - [anon_sym_public] = ACTIONS(929), - [anon_sym_protected] = ACTIONS(929), - [anon_sym_private] = ACTIONS(929), - [anon_sym_abstract] = ACTIONS(929), - [anon_sym_strictfp] = ACTIONS(929), - [anon_sym_native] = ACTIONS(929), - [anon_sym_transient] = ACTIONS(929), - [anon_sym_volatile] = ACTIONS(929), - [anon_sym_sealed] = ACTIONS(929), - [anon_sym_non_DASHsealed] = ACTIONS(927), - [anon_sym_record] = ACTIONS(929), - [anon_sym_ATinterface] = ACTIONS(927), - [anon_sym_interface] = ACTIONS(929), - [anon_sym_byte] = ACTIONS(929), - [anon_sym_short] = ACTIONS(929), - [anon_sym_int] = ACTIONS(929), - [anon_sym_long] = ACTIONS(929), - [anon_sym_char] = ACTIONS(929), - [anon_sym_float] = ACTIONS(929), - [anon_sym_double] = ACTIONS(929), - [sym_boolean_type] = ACTIONS(929), - [sym_void_type] = ACTIONS(929), - [sym_this] = ACTIONS(929), - [sym_super] = ACTIONS(929), + [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(928), + [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), + [anon_sym_RBRACE] = ACTIONS(926), + [sym_null_literal] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_LT] = 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_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_with] = 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), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(931), - [sym_identifier] = ACTIONS(933), - [sym_decimal_integer_literal] = ACTIONS(933), - [sym_hex_integer_literal] = ACTIONS(933), - [sym_octal_integer_literal] = ACTIONS(933), - [sym_binary_integer_literal] = ACTIONS(931), - [sym_decimal_floating_point_literal] = ACTIONS(931), - [sym_hex_floating_point_literal] = ACTIONS(933), - [sym_true] = ACTIONS(933), - [sym_false] = ACTIONS(933), - [sym_character_literal] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [sym_null_literal] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_final] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_new] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_switch] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_case] = ACTIONS(933), - [anon_sym_default] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_assert] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_while] = ACTIONS(933), - [anon_sym_break] = ACTIONS(933), - [anon_sym_continue] = ACTIONS(933), - [anon_sym_return] = ACTIONS(933), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_synchronized] = ACTIONS(933), - [anon_sym_throw] = ACTIONS(933), - [anon_sym_try] = ACTIONS(933), - [anon_sym_if] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_for] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_static] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_package] = ACTIONS(933), - [anon_sym_import] = ACTIONS(933), - [anon_sym_enum] = ACTIONS(933), - [anon_sym_public] = ACTIONS(933), - [anon_sym_protected] = ACTIONS(933), - [anon_sym_private] = ACTIONS(933), - [anon_sym_abstract] = ACTIONS(933), - [anon_sym_strictfp] = ACTIONS(933), - [anon_sym_native] = ACTIONS(933), - [anon_sym_transient] = ACTIONS(933), - [anon_sym_volatile] = ACTIONS(933), - [anon_sym_sealed] = ACTIONS(933), - [anon_sym_non_DASHsealed] = ACTIONS(931), - [anon_sym_record] = ACTIONS(933), - [anon_sym_ATinterface] = ACTIONS(931), - [anon_sym_interface] = ACTIONS(933), - [anon_sym_byte] = ACTIONS(933), - [anon_sym_short] = ACTIONS(933), - [anon_sym_int] = ACTIONS(933), - [anon_sym_long] = ACTIONS(933), - [anon_sym_char] = ACTIONS(933), - [anon_sym_float] = ACTIONS(933), - [anon_sym_double] = ACTIONS(933), - [sym_boolean_type] = ACTIONS(933), - [sym_void_type] = ACTIONS(933), - [sym_this] = ACTIONS(933), - [sym_super] = ACTIONS(933), + [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(932), + [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), + [anon_sym_DQUOTE] = ACTIONS(932), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [sym_null_literal] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_final] = 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_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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), - [sym_decimal_integer_literal] = ACTIONS(937), - [sym_hex_integer_literal] = ACTIONS(937), - [sym_octal_integer_literal] = ACTIONS(937), - [sym_binary_integer_literal] = ACTIONS(935), - [sym_decimal_floating_point_literal] = ACTIONS(935), - [sym_hex_floating_point_literal] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_character_literal] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [sym_null_literal] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_final] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_case] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_assert] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(937), - [anon_sym_synchronized] = ACTIONS(937), - [anon_sym_throw] = ACTIONS(937), - [anon_sym_try] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_else] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym_open] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_with] = ACTIONS(937), - [anon_sym_package] = ACTIONS(937), - [anon_sym_import] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_abstract] = ACTIONS(937), - [anon_sym_strictfp] = ACTIONS(937), - [anon_sym_native] = ACTIONS(937), - [anon_sym_transient] = ACTIONS(937), - [anon_sym_volatile] = ACTIONS(937), - [anon_sym_sealed] = ACTIONS(937), - [anon_sym_non_DASHsealed] = ACTIONS(935), - [anon_sym_record] = ACTIONS(937), - [anon_sym_ATinterface] = ACTIONS(935), - [anon_sym_interface] = ACTIONS(937), - [anon_sym_byte] = ACTIONS(937), - [anon_sym_short] = ACTIONS(937), - [anon_sym_int] = ACTIONS(937), - [anon_sym_long] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_float] = ACTIONS(937), - [anon_sym_double] = ACTIONS(937), - [sym_boolean_type] = ACTIONS(937), - [sym_void_type] = ACTIONS(937), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(937), + [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(936), + [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), + [anon_sym_DQUOTE] = ACTIONS(936), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [sym_null_literal] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(934), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_final] = 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_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_with] = 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_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), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(939), - [sym_identifier] = ACTIONS(941), - [sym_decimal_integer_literal] = ACTIONS(941), - [sym_hex_integer_literal] = ACTIONS(941), - [sym_octal_integer_literal] = ACTIONS(941), - [sym_binary_integer_literal] = ACTIONS(939), - [sym_decimal_floating_point_literal] = ACTIONS(939), - [sym_hex_floating_point_literal] = ACTIONS(941), - [sym_true] = ACTIONS(941), - [sym_false] = ACTIONS(941), - [sym_character_literal] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(941), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [sym_null_literal] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(941), - [anon_sym_final] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym_new] = ACTIONS(941), - [anon_sym_class] = ACTIONS(941), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_case] = ACTIONS(941), - [anon_sym_default] = ACTIONS(941), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_do] = ACTIONS(941), - [anon_sym_while] = ACTIONS(941), - [anon_sym_break] = ACTIONS(941), - [anon_sym_continue] = ACTIONS(941), - [anon_sym_return] = ACTIONS(941), - [anon_sym_yield] = ACTIONS(941), - [anon_sym_synchronized] = ACTIONS(941), - [anon_sym_throw] = ACTIONS(941), - [anon_sym_try] = ACTIONS(941), - [anon_sym_if] = ACTIONS(941), - [anon_sym_else] = ACTIONS(941), - [anon_sym_for] = ACTIONS(941), - [anon_sym_AT] = ACTIONS(941), - [anon_sym_open] = ACTIONS(941), - [anon_sym_module] = ACTIONS(941), - [anon_sym_static] = ACTIONS(941), - [anon_sym_with] = ACTIONS(941), - [anon_sym_package] = ACTIONS(941), - [anon_sym_import] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(941), - [anon_sym_public] = ACTIONS(941), - [anon_sym_protected] = ACTIONS(941), - [anon_sym_private] = ACTIONS(941), - [anon_sym_abstract] = ACTIONS(941), - [anon_sym_strictfp] = ACTIONS(941), - [anon_sym_native] = ACTIONS(941), - [anon_sym_transient] = ACTIONS(941), - [anon_sym_volatile] = ACTIONS(941), - [anon_sym_sealed] = ACTIONS(941), - [anon_sym_non_DASHsealed] = ACTIONS(939), - [anon_sym_record] = ACTIONS(941), - [anon_sym_ATinterface] = ACTIONS(939), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_byte] = ACTIONS(941), - [anon_sym_short] = ACTIONS(941), - [anon_sym_int] = ACTIONS(941), - [anon_sym_long] = ACTIONS(941), - [anon_sym_char] = ACTIONS(941), - [anon_sym_float] = ACTIONS(941), - [anon_sym_double] = ACTIONS(941), - [sym_boolean_type] = ACTIONS(941), - [sym_void_type] = ACTIONS(941), - [sym_this] = ACTIONS(941), - [sym_super] = ACTIONS(941), + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(940), + [sym_decimal_integer_literal] = ACTIONS(940), + [sym_hex_integer_literal] = ACTIONS(940), + [sym_octal_integer_literal] = ACTIONS(940), + [sym_binary_integer_literal] = ACTIONS(938), + [sym_decimal_floating_point_literal] = ACTIONS(938), + [sym_hex_floating_point_literal] = ACTIONS(940), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_character_literal] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(940), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [sym_null_literal] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_LT] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_final] = ACTIONS(940), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_assert] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_yield] = ACTIONS(940), + [anon_sym_synchronized] = ACTIONS(940), + [anon_sym_throw] = ACTIONS(940), + [anon_sym_try] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_AT] = ACTIONS(940), + [anon_sym_open] = ACTIONS(940), + [anon_sym_module] = ACTIONS(940), + [anon_sym_static] = ACTIONS(940), + [anon_sym_with] = ACTIONS(940), + [anon_sym_package] = ACTIONS(940), + [anon_sym_import] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_public] = ACTIONS(940), + [anon_sym_protected] = ACTIONS(940), + [anon_sym_private] = ACTIONS(940), + [anon_sym_abstract] = ACTIONS(940), + [anon_sym_strictfp] = ACTIONS(940), + [anon_sym_native] = ACTIONS(940), + [anon_sym_transient] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_sealed] = ACTIONS(940), + [anon_sym_non_DASHsealed] = ACTIONS(938), + [anon_sym_record] = ACTIONS(940), + [anon_sym_ATinterface] = ACTIONS(938), + [anon_sym_interface] = ACTIONS(940), + [anon_sym_byte] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [anon_sym_int] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_char] = ACTIONS(940), + [anon_sym_float] = ACTIONS(940), + [anon_sym_double] = ACTIONS(940), + [sym_boolean_type] = ACTIONS(940), + [sym_void_type] = ACTIONS(940), + [sym_this] = ACTIONS(940), + [sym_super] = ACTIONS(940), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(943), - [sym_identifier] = ACTIONS(945), - [sym_decimal_integer_literal] = ACTIONS(945), - [sym_hex_integer_literal] = ACTIONS(945), - [sym_octal_integer_literal] = ACTIONS(945), - [sym_binary_integer_literal] = ACTIONS(943), - [sym_decimal_floating_point_literal] = ACTIONS(943), - [sym_hex_floating_point_literal] = ACTIONS(945), - [sym_true] = ACTIONS(945), - [sym_false] = ACTIONS(945), - [sym_character_literal] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [sym_null_literal] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_final] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_TILDE] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_new] = ACTIONS(945), - [anon_sym_class] = ACTIONS(945), - [anon_sym_switch] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_case] = ACTIONS(945), - [anon_sym_default] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_assert] = ACTIONS(945), - [anon_sym_do] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_yield] = ACTIONS(945), - [anon_sym_synchronized] = ACTIONS(945), - [anon_sym_throw] = ACTIONS(945), - [anon_sym_try] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_AT] = ACTIONS(945), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(945), - [anon_sym_with] = ACTIONS(945), - [anon_sym_package] = ACTIONS(945), - [anon_sym_import] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(945), - [anon_sym_public] = ACTIONS(945), - [anon_sym_protected] = ACTIONS(945), - [anon_sym_private] = ACTIONS(945), - [anon_sym_abstract] = ACTIONS(945), - [anon_sym_strictfp] = ACTIONS(945), - [anon_sym_native] = ACTIONS(945), - [anon_sym_transient] = ACTIONS(945), - [anon_sym_volatile] = ACTIONS(945), - [anon_sym_sealed] = ACTIONS(945), - [anon_sym_non_DASHsealed] = ACTIONS(943), - [anon_sym_record] = ACTIONS(945), - [anon_sym_ATinterface] = ACTIONS(943), - [anon_sym_interface] = ACTIONS(945), - [anon_sym_byte] = ACTIONS(945), - [anon_sym_short] = ACTIONS(945), - [anon_sym_int] = ACTIONS(945), - [anon_sym_long] = ACTIONS(945), - [anon_sym_char] = ACTIONS(945), - [anon_sym_float] = ACTIONS(945), - [anon_sym_double] = ACTIONS(945), - [sym_boolean_type] = ACTIONS(945), - [sym_void_type] = ACTIONS(945), - [sym_this] = ACTIONS(945), - [sym_super] = ACTIONS(945), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(944), + [sym_decimal_integer_literal] = ACTIONS(944), + [sym_hex_integer_literal] = ACTIONS(944), + [sym_octal_integer_literal] = ACTIONS(944), + [sym_binary_integer_literal] = ACTIONS(942), + [sym_decimal_floating_point_literal] = ACTIONS(942), + [sym_hex_floating_point_literal] = ACTIONS(944), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_character_literal] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(944), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [sym_null_literal] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_final] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_new] = ACTIONS(944), + [anon_sym_class] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_assert] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_yield] = ACTIONS(944), + [anon_sym_synchronized] = ACTIONS(944), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_try] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_AT] = ACTIONS(944), + [anon_sym_open] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_static] = ACTIONS(944), + [anon_sym_with] = ACTIONS(944), + [anon_sym_package] = ACTIONS(944), + [anon_sym_import] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_abstract] = ACTIONS(944), + [anon_sym_strictfp] = ACTIONS(944), + [anon_sym_native] = ACTIONS(944), + [anon_sym_transient] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_sealed] = ACTIONS(944), + [anon_sym_non_DASHsealed] = ACTIONS(942), + [anon_sym_record] = ACTIONS(944), + [anon_sym_ATinterface] = ACTIONS(942), + [anon_sym_interface] = ACTIONS(944), + [anon_sym_byte] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [anon_sym_int] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_char] = ACTIONS(944), + [anon_sym_float] = ACTIONS(944), + [anon_sym_double] = ACTIONS(944), + [sym_boolean_type] = ACTIONS(944), + [sym_void_type] = ACTIONS(944), + [sym_this] = ACTIONS(944), + [sym_super] = ACTIONS(944), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [sym_decimal_integer_literal] = ACTIONS(949), - [sym_hex_integer_literal] = ACTIONS(949), - [sym_octal_integer_literal] = ACTIONS(949), - [sym_binary_integer_literal] = ACTIONS(947), - [sym_decimal_floating_point_literal] = ACTIONS(947), - [sym_hex_floating_point_literal] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_character_literal] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [sym_null_literal] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_final] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_case] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_assert] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_synchronized] = ACTIONS(949), - [anon_sym_throw] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(949), - [anon_sym_open] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_static] = ACTIONS(949), - [anon_sym_with] = ACTIONS(949), - [anon_sym_package] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_public] = ACTIONS(949), - [anon_sym_protected] = ACTIONS(949), - [anon_sym_private] = ACTIONS(949), - [anon_sym_abstract] = ACTIONS(949), - [anon_sym_strictfp] = ACTIONS(949), - [anon_sym_native] = ACTIONS(949), - [anon_sym_transient] = ACTIONS(949), - [anon_sym_volatile] = ACTIONS(949), - [anon_sym_sealed] = ACTIONS(949), - [anon_sym_non_DASHsealed] = ACTIONS(947), - [anon_sym_record] = ACTIONS(949), - [anon_sym_ATinterface] = ACTIONS(947), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_byte] = ACTIONS(949), - [anon_sym_short] = ACTIONS(949), - [anon_sym_int] = ACTIONS(949), - [anon_sym_long] = ACTIONS(949), - [anon_sym_char] = ACTIONS(949), - [anon_sym_float] = ACTIONS(949), - [anon_sym_double] = ACTIONS(949), - [sym_boolean_type] = ACTIONS(949), - [sym_void_type] = ACTIONS(949), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(949), + [ts_builtin_sym_end] = ACTIONS(946), + [sym_identifier] = ACTIONS(948), + [sym_decimal_integer_literal] = ACTIONS(948), + [sym_hex_integer_literal] = ACTIONS(948), + [sym_octal_integer_literal] = ACTIONS(948), + [sym_binary_integer_literal] = ACTIONS(946), + [sym_decimal_floating_point_literal] = ACTIONS(946), + [sym_hex_floating_point_literal] = ACTIONS(948), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_character_literal] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [sym_null_literal] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_final] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_new] = ACTIONS(948), + [anon_sym_class] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_assert] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_yield] = ACTIONS(948), + [anon_sym_synchronized] = ACTIONS(948), + [anon_sym_throw] = ACTIONS(948), + [anon_sym_try] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(948), + [anon_sym_open] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_static] = ACTIONS(948), + [anon_sym_with] = ACTIONS(948), + [anon_sym_package] = ACTIONS(948), + [anon_sym_import] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_public] = ACTIONS(948), + [anon_sym_protected] = ACTIONS(948), + [anon_sym_private] = ACTIONS(948), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_strictfp] = ACTIONS(948), + [anon_sym_native] = ACTIONS(948), + [anon_sym_transient] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_sealed] = ACTIONS(948), + [anon_sym_non_DASHsealed] = ACTIONS(946), + [anon_sym_record] = ACTIONS(948), + [anon_sym_ATinterface] = ACTIONS(946), + [anon_sym_interface] = ACTIONS(948), + [anon_sym_byte] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [anon_sym_int] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_char] = ACTIONS(948), + [anon_sym_float] = ACTIONS(948), + [anon_sym_double] = ACTIONS(948), + [sym_boolean_type] = ACTIONS(948), + [sym_void_type] = ACTIONS(948), + [sym_this] = ACTIONS(948), + [sym_super] = ACTIONS(948), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_identifier] = ACTIONS(953), - [sym_decimal_integer_literal] = ACTIONS(953), - [sym_hex_integer_literal] = ACTIONS(953), - [sym_octal_integer_literal] = ACTIONS(953), - [sym_binary_integer_literal] = ACTIONS(951), - [sym_decimal_floating_point_literal] = ACTIONS(951), - [sym_hex_floating_point_literal] = ACTIONS(953), - [sym_true] = ACTIONS(953), - [sym_false] = ACTIONS(953), - [sym_character_literal] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(953), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [sym_null_literal] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_final] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_PLUS_PLUS] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_new] = ACTIONS(953), - [anon_sym_class] = ACTIONS(953), - [anon_sym_switch] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_case] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_assert] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_yield] = ACTIONS(953), - [anon_sym_synchronized] = ACTIONS(953), - [anon_sym_throw] = ACTIONS(953), - [anon_sym_try] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym_open] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_static] = ACTIONS(953), - [anon_sym_with] = ACTIONS(953), - [anon_sym_package] = ACTIONS(953), - [anon_sym_import] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [anon_sym_public] = ACTIONS(953), - [anon_sym_protected] = ACTIONS(953), - [anon_sym_private] = ACTIONS(953), - [anon_sym_abstract] = ACTIONS(953), - [anon_sym_strictfp] = ACTIONS(953), - [anon_sym_native] = ACTIONS(953), - [anon_sym_transient] = ACTIONS(953), - [anon_sym_volatile] = ACTIONS(953), - [anon_sym_sealed] = ACTIONS(953), - [anon_sym_non_DASHsealed] = ACTIONS(951), - [anon_sym_record] = ACTIONS(953), - [anon_sym_ATinterface] = ACTIONS(951), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_byte] = ACTIONS(953), - [anon_sym_short] = ACTIONS(953), - [anon_sym_int] = ACTIONS(953), - [anon_sym_long] = ACTIONS(953), - [anon_sym_char] = ACTIONS(953), - [anon_sym_float] = ACTIONS(953), - [anon_sym_double] = ACTIONS(953), - [sym_boolean_type] = ACTIONS(953), - [sym_void_type] = ACTIONS(953), - [sym_this] = ACTIONS(953), - [sym_super] = ACTIONS(953), + [ts_builtin_sym_end] = ACTIONS(950), + [sym_identifier] = ACTIONS(952), + [sym_decimal_integer_literal] = ACTIONS(952), + [sym_hex_integer_literal] = ACTIONS(952), + [sym_octal_integer_literal] = ACTIONS(952), + [sym_binary_integer_literal] = ACTIONS(950), + [sym_decimal_floating_point_literal] = ACTIONS(950), + [sym_hex_floating_point_literal] = ACTIONS(952), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_character_literal] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [sym_null_literal] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_LT] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_final] = ACTIONS(952), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_new] = ACTIONS(952), + [anon_sym_class] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(952), + [anon_sym_synchronized] = ACTIONS(952), + [anon_sym_throw] = ACTIONS(952), + [anon_sym_try] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_AT] = ACTIONS(952), + [anon_sym_open] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_static] = ACTIONS(952), + [anon_sym_with] = ACTIONS(952), + [anon_sym_package] = ACTIONS(952), + [anon_sym_import] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_public] = ACTIONS(952), + [anon_sym_protected] = ACTIONS(952), + [anon_sym_private] = ACTIONS(952), + [anon_sym_abstract] = ACTIONS(952), + [anon_sym_strictfp] = ACTIONS(952), + [anon_sym_native] = ACTIONS(952), + [anon_sym_transient] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_sealed] = ACTIONS(952), + [anon_sym_non_DASHsealed] = ACTIONS(950), + [anon_sym_record] = ACTIONS(952), + [anon_sym_ATinterface] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_byte] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [anon_sym_int] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_char] = ACTIONS(952), + [anon_sym_float] = ACTIONS(952), + [anon_sym_double] = ACTIONS(952), + [sym_boolean_type] = ACTIONS(952), + [sym_void_type] = ACTIONS(952), + [sym_this] = ACTIONS(952), + [sym_super] = ACTIONS(952), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(955), - [sym_identifier] = ACTIONS(957), - [sym_decimal_integer_literal] = ACTIONS(957), - [sym_hex_integer_literal] = ACTIONS(957), - [sym_octal_integer_literal] = ACTIONS(957), - [sym_binary_integer_literal] = ACTIONS(955), - [sym_decimal_floating_point_literal] = ACTIONS(955), - [sym_hex_floating_point_literal] = ACTIONS(957), - [sym_true] = ACTIONS(957), - [sym_false] = ACTIONS(957), - [sym_character_literal] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [sym_null_literal] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_final] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(955), - [anon_sym_new] = ACTIONS(957), - [anon_sym_class] = ACTIONS(957), - [anon_sym_switch] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_case] = ACTIONS(957), - [anon_sym_default] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_assert] = ACTIONS(957), - [anon_sym_do] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(957), - [anon_sym_synchronized] = ACTIONS(957), - [anon_sym_throw] = ACTIONS(957), - [anon_sym_try] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_else] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym_open] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_static] = ACTIONS(957), - [anon_sym_with] = ACTIONS(957), - [anon_sym_package] = ACTIONS(957), - [anon_sym_import] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_abstract] = ACTIONS(957), - [anon_sym_strictfp] = ACTIONS(957), - [anon_sym_native] = ACTIONS(957), - [anon_sym_transient] = ACTIONS(957), - [anon_sym_volatile] = ACTIONS(957), - [anon_sym_sealed] = ACTIONS(957), - [anon_sym_non_DASHsealed] = ACTIONS(955), - [anon_sym_record] = ACTIONS(957), - [anon_sym_ATinterface] = ACTIONS(955), - [anon_sym_interface] = ACTIONS(957), - [anon_sym_byte] = ACTIONS(957), - [anon_sym_short] = ACTIONS(957), - [anon_sym_int] = ACTIONS(957), - [anon_sym_long] = ACTIONS(957), - [anon_sym_char] = ACTIONS(957), - [anon_sym_float] = ACTIONS(957), - [anon_sym_double] = ACTIONS(957), - [sym_boolean_type] = ACTIONS(957), - [sym_void_type] = ACTIONS(957), - [sym_this] = ACTIONS(957), - [sym_super] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(954), + [sym_identifier] = ACTIONS(956), + [sym_decimal_integer_literal] = ACTIONS(956), + [sym_hex_integer_literal] = ACTIONS(956), + [sym_octal_integer_literal] = ACTIONS(956), + [sym_binary_integer_literal] = ACTIONS(954), + [sym_decimal_floating_point_literal] = ACTIONS(954), + [sym_hex_floating_point_literal] = ACTIONS(956), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_character_literal] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [sym_null_literal] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_LT] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_final] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_new] = ACTIONS(956), + [anon_sym_class] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_assert] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_synchronized] = ACTIONS(956), + [anon_sym_throw] = ACTIONS(956), + [anon_sym_try] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym_open] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [anon_sym_static] = ACTIONS(956), + [anon_sym_with] = ACTIONS(956), + [anon_sym_package] = ACTIONS(956), + [anon_sym_import] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_abstract] = ACTIONS(956), + [anon_sym_strictfp] = ACTIONS(956), + [anon_sym_native] = ACTIONS(956), + [anon_sym_transient] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_sealed] = ACTIONS(956), + [anon_sym_non_DASHsealed] = ACTIONS(954), + [anon_sym_record] = ACTIONS(956), + [anon_sym_ATinterface] = ACTIONS(954), + [anon_sym_interface] = ACTIONS(956), + [anon_sym_byte] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [anon_sym_int] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_char] = ACTIONS(956), + [anon_sym_float] = ACTIONS(956), + [anon_sym_double] = ACTIONS(956), + [sym_boolean_type] = ACTIONS(956), + [sym_void_type] = ACTIONS(956), + [sym_this] = ACTIONS(956), + [sym_super] = ACTIONS(956), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), - [sym_decimal_integer_literal] = ACTIONS(961), - [sym_hex_integer_literal] = ACTIONS(961), - [sym_octal_integer_literal] = ACTIONS(961), - [sym_binary_integer_literal] = ACTIONS(959), - [sym_decimal_floating_point_literal] = ACTIONS(959), - [sym_hex_floating_point_literal] = ACTIONS(961), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - [sym_character_literal] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(961), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [sym_null_literal] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_final] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_new] = ACTIONS(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_switch] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_case] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_assert] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_yield] = ACTIONS(961), - [anon_sym_synchronized] = ACTIONS(961), - [anon_sym_throw] = ACTIONS(961), - [anon_sym_try] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym_open] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_with] = ACTIONS(961), - [anon_sym_package] = ACTIONS(961), - [anon_sym_import] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_public] = ACTIONS(961), - [anon_sym_protected] = ACTIONS(961), - [anon_sym_private] = ACTIONS(961), - [anon_sym_abstract] = ACTIONS(961), - [anon_sym_strictfp] = ACTIONS(961), - [anon_sym_native] = ACTIONS(961), - [anon_sym_transient] = ACTIONS(961), - [anon_sym_volatile] = ACTIONS(961), - [anon_sym_sealed] = ACTIONS(961), - [anon_sym_non_DASHsealed] = ACTIONS(959), - [anon_sym_record] = ACTIONS(961), - [anon_sym_ATinterface] = ACTIONS(959), - [anon_sym_interface] = ACTIONS(961), - [anon_sym_byte] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_int] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_float] = ACTIONS(961), - [anon_sym_double] = ACTIONS(961), - [sym_boolean_type] = ACTIONS(961), - [sym_void_type] = ACTIONS(961), - [sym_this] = ACTIONS(961), - [sym_super] = ACTIONS(961), + [ts_builtin_sym_end] = ACTIONS(958), + [sym_identifier] = ACTIONS(960), + [sym_decimal_integer_literal] = ACTIONS(960), + [sym_hex_integer_literal] = ACTIONS(960), + [sym_octal_integer_literal] = ACTIONS(960), + [sym_binary_integer_literal] = ACTIONS(958), + [sym_decimal_floating_point_literal] = ACTIONS(958), + [sym_hex_floating_point_literal] = ACTIONS(960), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_character_literal] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [sym_null_literal] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_final] = ACTIONS(960), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_new] = ACTIONS(960), + [anon_sym_class] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_assert] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_yield] = ACTIONS(960), + [anon_sym_synchronized] = ACTIONS(960), + [anon_sym_throw] = ACTIONS(960), + [anon_sym_try] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_AT] = ACTIONS(960), + [anon_sym_open] = ACTIONS(960), + [anon_sym_module] = ACTIONS(960), + [anon_sym_static] = ACTIONS(960), + [anon_sym_with] = ACTIONS(960), + [anon_sym_package] = ACTIONS(960), + [anon_sym_import] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_public] = ACTIONS(960), + [anon_sym_protected] = ACTIONS(960), + [anon_sym_private] = ACTIONS(960), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_strictfp] = ACTIONS(960), + [anon_sym_native] = ACTIONS(960), + [anon_sym_transient] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_sealed] = ACTIONS(960), + [anon_sym_non_DASHsealed] = ACTIONS(958), + [anon_sym_record] = ACTIONS(960), + [anon_sym_ATinterface] = ACTIONS(958), + [anon_sym_interface] = ACTIONS(960), + [anon_sym_byte] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [anon_sym_int] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_char] = ACTIONS(960), + [anon_sym_float] = ACTIONS(960), + [anon_sym_double] = ACTIONS(960), + [sym_boolean_type] = ACTIONS(960), + [sym_void_type] = ACTIONS(960), + [sym_this] = ACTIONS(960), + [sym_super] = ACTIONS(960), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(963), - [sym_identifier] = ACTIONS(965), - [sym_decimal_integer_literal] = ACTIONS(965), - [sym_hex_integer_literal] = ACTIONS(965), - [sym_octal_integer_literal] = ACTIONS(965), - [sym_binary_integer_literal] = ACTIONS(963), - [sym_decimal_floating_point_literal] = ACTIONS(963), - [sym_hex_floating_point_literal] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [sym_character_literal] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [sym_null_literal] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_final] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_new] = ACTIONS(965), - [anon_sym_class] = ACTIONS(965), - [anon_sym_switch] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_case] = ACTIONS(965), - [anon_sym_default] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_assert] = ACTIONS(965), - [anon_sym_do] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [anon_sym_break] = ACTIONS(965), - [anon_sym_continue] = ACTIONS(965), - [anon_sym_return] = ACTIONS(965), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_synchronized] = ACTIONS(965), - [anon_sym_throw] = ACTIONS(965), - [anon_sym_try] = ACTIONS(965), - [anon_sym_if] = ACTIONS(965), - [anon_sym_else] = ACTIONS(965), - [anon_sym_for] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(965), - [anon_sym_open] = ACTIONS(965), - [anon_sym_module] = ACTIONS(965), - [anon_sym_static] = ACTIONS(965), - [anon_sym_with] = ACTIONS(965), - [anon_sym_package] = ACTIONS(965), - [anon_sym_import] = ACTIONS(965), - [anon_sym_enum] = ACTIONS(965), - [anon_sym_public] = ACTIONS(965), - [anon_sym_protected] = ACTIONS(965), - [anon_sym_private] = ACTIONS(965), - [anon_sym_abstract] = ACTIONS(965), - [anon_sym_strictfp] = ACTIONS(965), - [anon_sym_native] = ACTIONS(965), - [anon_sym_transient] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym_sealed] = ACTIONS(965), - [anon_sym_non_DASHsealed] = ACTIONS(963), - [anon_sym_record] = ACTIONS(965), - [anon_sym_ATinterface] = ACTIONS(963), - [anon_sym_interface] = ACTIONS(965), - [anon_sym_byte] = ACTIONS(965), - [anon_sym_short] = ACTIONS(965), - [anon_sym_int] = ACTIONS(965), - [anon_sym_long] = ACTIONS(965), - [anon_sym_char] = ACTIONS(965), - [anon_sym_float] = ACTIONS(965), - [anon_sym_double] = ACTIONS(965), - [sym_boolean_type] = ACTIONS(965), - [sym_void_type] = ACTIONS(965), - [sym_this] = ACTIONS(965), - [sym_super] = ACTIONS(965), + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(964), + [sym_decimal_integer_literal] = ACTIONS(964), + [sym_hex_integer_literal] = ACTIONS(964), + [sym_octal_integer_literal] = ACTIONS(964), + [sym_binary_integer_literal] = ACTIONS(962), + [sym_decimal_floating_point_literal] = ACTIONS(962), + [sym_hex_floating_point_literal] = ACTIONS(964), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_character_literal] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(964), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [sym_null_literal] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_final] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_new] = ACTIONS(964), + [anon_sym_class] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_assert] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_yield] = ACTIONS(964), + [anon_sym_synchronized] = ACTIONS(964), + [anon_sym_throw] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_AT] = ACTIONS(964), + [anon_sym_open] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_static] = ACTIONS(964), + [anon_sym_with] = ACTIONS(964), + [anon_sym_package] = ACTIONS(964), + [anon_sym_import] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_public] = ACTIONS(964), + [anon_sym_protected] = ACTIONS(964), + [anon_sym_private] = ACTIONS(964), + [anon_sym_abstract] = ACTIONS(964), + [anon_sym_strictfp] = ACTIONS(964), + [anon_sym_native] = ACTIONS(964), + [anon_sym_transient] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_sealed] = ACTIONS(964), + [anon_sym_non_DASHsealed] = ACTIONS(962), + [anon_sym_record] = ACTIONS(964), + [anon_sym_ATinterface] = ACTIONS(962), + [anon_sym_interface] = ACTIONS(964), + [anon_sym_byte] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [anon_sym_int] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_char] = ACTIONS(964), + [anon_sym_float] = ACTIONS(964), + [anon_sym_double] = ACTIONS(964), + [sym_boolean_type] = ACTIONS(964), + [sym_void_type] = ACTIONS(964), + [sym_this] = ACTIONS(964), + [sym_super] = ACTIONS(964), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(967), - [sym_identifier] = ACTIONS(969), - [sym_decimal_integer_literal] = ACTIONS(969), - [sym_hex_integer_literal] = ACTIONS(969), - [sym_octal_integer_literal] = ACTIONS(969), - [sym_binary_integer_literal] = ACTIONS(967), - [sym_decimal_floating_point_literal] = ACTIONS(967), - [sym_hex_floating_point_literal] = ACTIONS(969), - [sym_true] = ACTIONS(969), - [sym_false] = ACTIONS(969), - [sym_character_literal] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [sym_null_literal] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_final] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_new] = ACTIONS(969), - [anon_sym_class] = ACTIONS(969), - [anon_sym_switch] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_case] = ACTIONS(969), - [anon_sym_default] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_assert] = ACTIONS(969), - [anon_sym_do] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_yield] = ACTIONS(969), - [anon_sym_synchronized] = ACTIONS(969), - [anon_sym_throw] = ACTIONS(969), - [anon_sym_try] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym_open] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_static] = ACTIONS(969), - [anon_sym_with] = ACTIONS(969), - [anon_sym_package] = ACTIONS(969), - [anon_sym_import] = ACTIONS(969), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_public] = ACTIONS(969), - [anon_sym_protected] = ACTIONS(969), - [anon_sym_private] = ACTIONS(969), - [anon_sym_abstract] = ACTIONS(969), - [anon_sym_strictfp] = ACTIONS(969), - [anon_sym_native] = ACTIONS(969), - [anon_sym_transient] = ACTIONS(969), - [anon_sym_volatile] = ACTIONS(969), - [anon_sym_sealed] = ACTIONS(969), - [anon_sym_non_DASHsealed] = ACTIONS(967), - [anon_sym_record] = ACTIONS(969), - [anon_sym_ATinterface] = ACTIONS(967), - [anon_sym_interface] = ACTIONS(969), - [anon_sym_byte] = ACTIONS(969), - [anon_sym_short] = ACTIONS(969), - [anon_sym_int] = ACTIONS(969), - [anon_sym_long] = ACTIONS(969), - [anon_sym_char] = ACTIONS(969), - [anon_sym_float] = ACTIONS(969), - [anon_sym_double] = ACTIONS(969), - [sym_boolean_type] = ACTIONS(969), - [sym_void_type] = ACTIONS(969), - [sym_this] = ACTIONS(969), - [sym_super] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(968), + [sym_decimal_integer_literal] = ACTIONS(968), + [sym_hex_integer_literal] = ACTIONS(968), + [sym_octal_integer_literal] = ACTIONS(968), + [sym_binary_integer_literal] = ACTIONS(966), + [sym_decimal_floating_point_literal] = ACTIONS(966), + [sym_hex_floating_point_literal] = ACTIONS(968), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_character_literal] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [sym_null_literal] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_final] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_new] = ACTIONS(968), + [anon_sym_class] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(966), + [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_else] = 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_with] = 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_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(966), + [anon_sym_record] = ACTIONS(968), + [anon_sym_ATinterface] = ACTIONS(966), + [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), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(971), - [sym_identifier] = ACTIONS(973), - [sym_decimal_integer_literal] = ACTIONS(973), - [sym_hex_integer_literal] = ACTIONS(973), - [sym_octal_integer_literal] = ACTIONS(973), - [sym_binary_integer_literal] = ACTIONS(971), - [sym_decimal_floating_point_literal] = ACTIONS(971), - [sym_hex_floating_point_literal] = ACTIONS(973), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [sym_character_literal] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(973), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [sym_null_literal] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_final] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_new] = ACTIONS(973), - [anon_sym_class] = ACTIONS(973), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_case] = ACTIONS(973), - [anon_sym_default] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(973), - [anon_sym_synchronized] = ACTIONS(973), - [anon_sym_throw] = ACTIONS(973), - [anon_sym_try] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(973), - [anon_sym_open] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_static] = ACTIONS(973), - [anon_sym_with] = ACTIONS(973), - [anon_sym_package] = ACTIONS(973), - [anon_sym_import] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [anon_sym_public] = ACTIONS(973), - [anon_sym_protected] = ACTIONS(973), - [anon_sym_private] = ACTIONS(973), - [anon_sym_abstract] = ACTIONS(973), - [anon_sym_strictfp] = ACTIONS(973), - [anon_sym_native] = ACTIONS(973), - [anon_sym_transient] = ACTIONS(973), - [anon_sym_volatile] = ACTIONS(973), - [anon_sym_sealed] = ACTIONS(973), - [anon_sym_non_DASHsealed] = ACTIONS(971), - [anon_sym_record] = ACTIONS(973), - [anon_sym_ATinterface] = ACTIONS(971), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_byte] = ACTIONS(973), - [anon_sym_short] = ACTIONS(973), - [anon_sym_int] = ACTIONS(973), - [anon_sym_long] = ACTIONS(973), - [anon_sym_char] = ACTIONS(973), - [anon_sym_float] = ACTIONS(973), - [anon_sym_double] = ACTIONS(973), - [sym_boolean_type] = ACTIONS(973), - [sym_void_type] = ACTIONS(973), - [sym_this] = ACTIONS(973), - [sym_super] = ACTIONS(973), + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(972), + [sym_decimal_integer_literal] = ACTIONS(972), + [sym_hex_integer_literal] = ACTIONS(972), + [sym_octal_integer_literal] = ACTIONS(972), + [sym_binary_integer_literal] = ACTIONS(970), + [sym_decimal_floating_point_literal] = ACTIONS(970), + [sym_hex_floating_point_literal] = ACTIONS(972), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_character_literal] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(972), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [sym_null_literal] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_final] = ACTIONS(972), + [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(972), + [anon_sym_class] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(970), + [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_else] = 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_with] = 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_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(970), + [anon_sym_record] = ACTIONS(972), + [anon_sym_ATinterface] = ACTIONS(970), + [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), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(975), - [sym_identifier] = ACTIONS(977), - [sym_decimal_integer_literal] = ACTIONS(977), - [sym_hex_integer_literal] = ACTIONS(977), - [sym_octal_integer_literal] = ACTIONS(977), - [sym_binary_integer_literal] = ACTIONS(975), - [sym_decimal_floating_point_literal] = ACTIONS(975), - [sym_hex_floating_point_literal] = ACTIONS(977), - [sym_true] = ACTIONS(977), - [sym_false] = ACTIONS(977), - [sym_character_literal] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [sym_null_literal] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_final] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_new] = ACTIONS(977), - [anon_sym_class] = ACTIONS(977), - [anon_sym_switch] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_case] = ACTIONS(977), - [anon_sym_default] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_assert] = ACTIONS(977), - [anon_sym_do] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [anon_sym_break] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_return] = ACTIONS(977), - [anon_sym_yield] = ACTIONS(977), - [anon_sym_synchronized] = ACTIONS(977), - [anon_sym_throw] = ACTIONS(977), - [anon_sym_try] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_else] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym_open] = ACTIONS(977), - [anon_sym_module] = ACTIONS(977), - [anon_sym_static] = ACTIONS(977), - [anon_sym_with] = ACTIONS(977), - [anon_sym_package] = ACTIONS(977), - [anon_sym_import] = ACTIONS(977), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [anon_sym_abstract] = ACTIONS(977), - [anon_sym_strictfp] = ACTIONS(977), - [anon_sym_native] = ACTIONS(977), - [anon_sym_transient] = ACTIONS(977), - [anon_sym_volatile] = ACTIONS(977), - [anon_sym_sealed] = ACTIONS(977), - [anon_sym_non_DASHsealed] = ACTIONS(975), - [anon_sym_record] = ACTIONS(977), - [anon_sym_ATinterface] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(977), - [anon_sym_byte] = ACTIONS(977), - [anon_sym_short] = ACTIONS(977), - [anon_sym_int] = ACTIONS(977), - [anon_sym_long] = ACTIONS(977), - [anon_sym_char] = ACTIONS(977), - [anon_sym_float] = ACTIONS(977), - [anon_sym_double] = ACTIONS(977), - [sym_boolean_type] = ACTIONS(977), - [sym_void_type] = ACTIONS(977), - [sym_this] = ACTIONS(977), - [sym_super] = ACTIONS(977), + [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(976), + [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), + [anon_sym_RBRACE] = ACTIONS(974), + [sym_null_literal] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_LT] = 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_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_with] = 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), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(979), - [sym_identifier] = ACTIONS(981), - [sym_decimal_integer_literal] = ACTIONS(981), - [sym_hex_integer_literal] = ACTIONS(981), - [sym_octal_integer_literal] = ACTIONS(981), - [sym_binary_integer_literal] = ACTIONS(979), - [sym_decimal_floating_point_literal] = ACTIONS(979), - [sym_hex_floating_point_literal] = ACTIONS(981), - [sym_true] = ACTIONS(981), - [sym_false] = ACTIONS(981), - [sym_character_literal] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [sym_null_literal] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_final] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_new] = ACTIONS(981), - [anon_sym_class] = ACTIONS(981), - [anon_sym_switch] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_case] = ACTIONS(981), - [anon_sym_default] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_assert] = ACTIONS(981), - [anon_sym_do] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [anon_sym_break] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_return] = ACTIONS(981), - [anon_sym_yield] = ACTIONS(981), - [anon_sym_synchronized] = ACTIONS(981), - [anon_sym_throw] = ACTIONS(981), - [anon_sym_try] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_else] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(981), - [anon_sym_open] = ACTIONS(981), - [anon_sym_module] = ACTIONS(981), - [anon_sym_static] = ACTIONS(981), - [anon_sym_with] = ACTIONS(981), - [anon_sym_package] = ACTIONS(981), - [anon_sym_import] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_public] = ACTIONS(981), - [anon_sym_protected] = ACTIONS(981), - [anon_sym_private] = ACTIONS(981), - [anon_sym_abstract] = ACTIONS(981), - [anon_sym_strictfp] = ACTIONS(981), - [anon_sym_native] = ACTIONS(981), - [anon_sym_transient] = ACTIONS(981), - [anon_sym_volatile] = ACTIONS(981), - [anon_sym_sealed] = ACTIONS(981), - [anon_sym_non_DASHsealed] = ACTIONS(979), - [anon_sym_record] = ACTIONS(981), - [anon_sym_ATinterface] = ACTIONS(979), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_byte] = ACTIONS(981), - [anon_sym_short] = ACTIONS(981), - [anon_sym_int] = ACTIONS(981), - [anon_sym_long] = ACTIONS(981), - [anon_sym_char] = ACTIONS(981), - [anon_sym_float] = ACTIONS(981), - [anon_sym_double] = ACTIONS(981), - [sym_boolean_type] = ACTIONS(981), - [sym_void_type] = ACTIONS(981), - [sym_this] = ACTIONS(981), - [sym_super] = ACTIONS(981), + [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(980), + [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), + [anon_sym_RBRACE] = ACTIONS(978), + [sym_null_literal] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_LT] = 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_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_with] = 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), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(985), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [sym_true] = ACTIONS(985), - [sym_false] = ACTIONS(985), - [sym_character_literal] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [sym_null_literal] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(983), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [anon_sym_new] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_case] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_synchronized] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_else] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(985), - [anon_sym_open] = ACTIONS(985), - [anon_sym_module] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_with] = ACTIONS(985), - [anon_sym_package] = ACTIONS(985), - [anon_sym_import] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_public] = ACTIONS(985), - [anon_sym_protected] = ACTIONS(985), - [anon_sym_private] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_strictfp] = ACTIONS(985), - [anon_sym_native] = ACTIONS(985), - [anon_sym_transient] = ACTIONS(985), - [anon_sym_volatile] = ACTIONS(985), - [anon_sym_sealed] = ACTIONS(985), - [anon_sym_non_DASHsealed] = ACTIONS(983), - [anon_sym_record] = ACTIONS(985), - [anon_sym_ATinterface] = ACTIONS(983), - [anon_sym_interface] = ACTIONS(985), - [anon_sym_byte] = ACTIONS(985), - [anon_sym_short] = ACTIONS(985), - [anon_sym_int] = ACTIONS(985), - [anon_sym_long] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_float] = ACTIONS(985), - [anon_sym_double] = ACTIONS(985), - [sym_boolean_type] = ACTIONS(985), - [sym_void_type] = ACTIONS(985), - [sym_this] = ACTIONS(985), - [sym_super] = ACTIONS(985), + [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(984), + [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), + [anon_sym_RBRACE] = ACTIONS(982), + [sym_null_literal] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_LT] = 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_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_with] = 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), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_decimal_integer_literal] = ACTIONS(568), - [sym_hex_integer_literal] = ACTIONS(568), - [sym_octal_integer_literal] = ACTIONS(568), - [sym_binary_integer_literal] = ACTIONS(566), - [sym_decimal_floating_point_literal] = ACTIONS(566), - [sym_hex_floating_point_literal] = ACTIONS(568), - [sym_true] = ACTIONS(568), - [sym_false] = ACTIONS(568), - [sym_character_literal] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [sym_null_literal] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_final] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(566), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_DASH_DASH] = ACTIONS(566), - [anon_sym_new] = ACTIONS(568), - [anon_sym_class] = ACTIONS(568), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_assert] = ACTIONS(568), - [anon_sym_do] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_synchronized] = ACTIONS(568), - [anon_sym_throw] = ACTIONS(568), - [anon_sym_try] = ACTIONS(568), - [anon_sym_if] = ACTIONS(568), - [anon_sym_else] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(568), - [anon_sym_open] = ACTIONS(568), - [anon_sym_module] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_with] = ACTIONS(568), - [anon_sym_package] = ACTIONS(568), - [anon_sym_import] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_public] = ACTIONS(568), - [anon_sym_protected] = ACTIONS(568), - [anon_sym_private] = ACTIONS(568), - [anon_sym_abstract] = ACTIONS(568), - [anon_sym_strictfp] = ACTIONS(568), - [anon_sym_native] = ACTIONS(568), - [anon_sym_transient] = ACTIONS(568), - [anon_sym_volatile] = ACTIONS(568), - [anon_sym_sealed] = ACTIONS(568), - [anon_sym_non_DASHsealed] = ACTIONS(566), - [anon_sym_record] = ACTIONS(568), - [anon_sym_ATinterface] = ACTIONS(566), - [anon_sym_interface] = ACTIONS(568), - [anon_sym_byte] = ACTIONS(568), - [anon_sym_short] = ACTIONS(568), - [anon_sym_int] = ACTIONS(568), - [anon_sym_long] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_float] = ACTIONS(568), - [anon_sym_double] = ACTIONS(568), - [sym_boolean_type] = ACTIONS(568), - [sym_void_type] = ACTIONS(568), - [sym_this] = ACTIONS(568), - [sym_super] = ACTIONS(568), + [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(988), + [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), + [anon_sym_RBRACE] = ACTIONS(986), + [sym_null_literal] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_LT] = 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_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_with] = 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), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(987), - [sym_identifier] = ACTIONS(989), - [sym_decimal_integer_literal] = ACTIONS(989), - [sym_hex_integer_literal] = ACTIONS(989), - [sym_octal_integer_literal] = ACTIONS(989), - [sym_binary_integer_literal] = ACTIONS(987), - [sym_decimal_floating_point_literal] = ACTIONS(987), - [sym_hex_floating_point_literal] = ACTIONS(989), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_character_literal] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [sym_null_literal] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_final] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_new] = ACTIONS(989), - [anon_sym_class] = ACTIONS(989), - [anon_sym_switch] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_case] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_assert] = ACTIONS(989), - [anon_sym_do] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(989), - [anon_sym_synchronized] = ACTIONS(989), - [anon_sym_throw] = ACTIONS(989), - [anon_sym_try] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_else] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_open] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_with] = ACTIONS(989), - [anon_sym_package] = ACTIONS(989), - [anon_sym_import] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_abstract] = ACTIONS(989), - [anon_sym_strictfp] = ACTIONS(989), - [anon_sym_native] = ACTIONS(989), - [anon_sym_transient] = ACTIONS(989), - [anon_sym_volatile] = ACTIONS(989), - [anon_sym_sealed] = ACTIONS(989), - [anon_sym_non_DASHsealed] = ACTIONS(987), - [anon_sym_record] = ACTIONS(989), - [anon_sym_ATinterface] = ACTIONS(987), - [anon_sym_interface] = ACTIONS(989), - [anon_sym_byte] = ACTIONS(989), - [anon_sym_short] = ACTIONS(989), - [anon_sym_int] = ACTIONS(989), - [anon_sym_long] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_float] = ACTIONS(989), - [anon_sym_double] = ACTIONS(989), - [sym_boolean_type] = ACTIONS(989), - [sym_void_type] = ACTIONS(989), - [sym_this] = ACTIONS(989), - [sym_super] = ACTIONS(989), + [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(992), + [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), + [anon_sym_RBRACE] = ACTIONS(990), + [sym_null_literal] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_LT] = 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_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_with] = 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), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(991), - [sym_identifier] = ACTIONS(993), - [sym_decimal_integer_literal] = ACTIONS(993), - [sym_hex_integer_literal] = ACTIONS(993), - [sym_octal_integer_literal] = ACTIONS(993), - [sym_binary_integer_literal] = ACTIONS(991), - [sym_decimal_floating_point_literal] = ACTIONS(991), - [sym_hex_floating_point_literal] = ACTIONS(993), - [sym_true] = ACTIONS(993), - [sym_false] = ACTIONS(993), - [sym_character_literal] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [sym_null_literal] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_final] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [anon_sym_new] = ACTIONS(993), - [anon_sym_class] = ACTIONS(993), - [anon_sym_switch] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_case] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_assert] = ACTIONS(993), - [anon_sym_do] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_yield] = ACTIONS(993), - [anon_sym_synchronized] = ACTIONS(993), - [anon_sym_throw] = ACTIONS(993), - [anon_sym_try] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_else] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(993), - [anon_sym_open] = ACTIONS(993), - [anon_sym_module] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_with] = ACTIONS(993), - [anon_sym_package] = ACTIONS(993), - [anon_sym_import] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_public] = ACTIONS(993), - [anon_sym_protected] = ACTIONS(993), - [anon_sym_private] = ACTIONS(993), - [anon_sym_abstract] = ACTIONS(993), - [anon_sym_strictfp] = ACTIONS(993), - [anon_sym_native] = ACTIONS(993), - [anon_sym_transient] = ACTIONS(993), - [anon_sym_volatile] = ACTIONS(993), - [anon_sym_sealed] = ACTIONS(993), - [anon_sym_non_DASHsealed] = ACTIONS(991), - [anon_sym_record] = ACTIONS(993), - [anon_sym_ATinterface] = ACTIONS(991), - [anon_sym_interface] = ACTIONS(993), - [anon_sym_byte] = ACTIONS(993), - [anon_sym_short] = ACTIONS(993), - [anon_sym_int] = ACTIONS(993), - [anon_sym_long] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_float] = ACTIONS(993), - [anon_sym_double] = ACTIONS(993), - [sym_boolean_type] = ACTIONS(993), - [sym_void_type] = ACTIONS(993), - [sym_this] = ACTIONS(993), - [sym_super] = ACTIONS(993), + [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(996), + [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), + [anon_sym_RBRACE] = ACTIONS(994), + [sym_null_literal] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LT] = 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_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_with] = 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), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(995), - [sym_identifier] = ACTIONS(997), - [sym_decimal_integer_literal] = ACTIONS(997), - [sym_hex_integer_literal] = ACTIONS(997), - [sym_octal_integer_literal] = ACTIONS(997), - [sym_binary_integer_literal] = ACTIONS(995), - [sym_decimal_floating_point_literal] = ACTIONS(995), - [sym_hex_floating_point_literal] = ACTIONS(997), - [sym_true] = ACTIONS(997), - [sym_false] = ACTIONS(997), - [sym_character_literal] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [sym_null_literal] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_final] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_new] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_switch] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_case] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_assert] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_yield] = ACTIONS(997), - [anon_sym_synchronized] = ACTIONS(997), - [anon_sym_throw] = ACTIONS(997), - [anon_sym_try] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(997), - [anon_sym_open] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_with] = ACTIONS(997), - [anon_sym_package] = ACTIONS(997), - [anon_sym_import] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_public] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_abstract] = ACTIONS(997), - [anon_sym_strictfp] = ACTIONS(997), - [anon_sym_native] = ACTIONS(997), - [anon_sym_transient] = ACTIONS(997), - [anon_sym_volatile] = ACTIONS(997), - [anon_sym_sealed] = ACTIONS(997), - [anon_sym_non_DASHsealed] = ACTIONS(995), - [anon_sym_record] = ACTIONS(997), - [anon_sym_ATinterface] = ACTIONS(995), - [anon_sym_interface] = ACTIONS(997), - [anon_sym_byte] = ACTIONS(997), - [anon_sym_short] = ACTIONS(997), - [anon_sym_int] = ACTIONS(997), - [anon_sym_long] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_float] = ACTIONS(997), - [anon_sym_double] = ACTIONS(997), - [sym_boolean_type] = ACTIONS(997), - [sym_void_type] = ACTIONS(997), - [sym_this] = ACTIONS(997), - [sym_super] = ACTIONS(997), + [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(1000), + [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), + [anon_sym_RBRACE] = ACTIONS(998), + [sym_null_literal] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_LT] = 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_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_with] = 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), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(1001), - [sym_decimal_integer_literal] = ACTIONS(1001), - [sym_hex_integer_literal] = ACTIONS(1001), - [sym_octal_integer_literal] = ACTIONS(1001), - [sym_binary_integer_literal] = ACTIONS(999), - [sym_decimal_floating_point_literal] = ACTIONS(999), - [sym_hex_floating_point_literal] = ACTIONS(1001), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_character_literal] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(1001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [sym_null_literal] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_final] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_new] = ACTIONS(1001), - [anon_sym_class] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_case] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_assert] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1001), - [anon_sym_synchronized] = ACTIONS(1001), - [anon_sym_throw] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(1001), - [anon_sym_open] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_with] = ACTIONS(1001), - [anon_sym_package] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_public] = ACTIONS(1001), - [anon_sym_protected] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1001), - [anon_sym_abstract] = ACTIONS(1001), - [anon_sym_strictfp] = ACTIONS(1001), - [anon_sym_native] = ACTIONS(1001), - [anon_sym_transient] = ACTIONS(1001), - [anon_sym_volatile] = ACTIONS(1001), - [anon_sym_sealed] = ACTIONS(1001), - [anon_sym_non_DASHsealed] = ACTIONS(999), - [anon_sym_record] = ACTIONS(1001), - [anon_sym_ATinterface] = ACTIONS(999), - [anon_sym_interface] = ACTIONS(1001), - [anon_sym_byte] = ACTIONS(1001), - [anon_sym_short] = ACTIONS(1001), - [anon_sym_int] = ACTIONS(1001), - [anon_sym_long] = ACTIONS(1001), - [anon_sym_char] = ACTIONS(1001), - [anon_sym_float] = ACTIONS(1001), - [anon_sym_double] = ACTIONS(1001), - [sym_boolean_type] = ACTIONS(1001), - [sym_void_type] = ACTIONS(1001), - [sym_this] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), + [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(1004), + [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), + [anon_sym_RBRACE] = ACTIONS(1002), + [sym_null_literal] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_LT] = 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_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_with] = 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), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1003), - [sym_identifier] = ACTIONS(1005), - [sym_decimal_integer_literal] = ACTIONS(1005), - [sym_hex_integer_literal] = ACTIONS(1005), - [sym_octal_integer_literal] = ACTIONS(1005), - [sym_binary_integer_literal] = ACTIONS(1003), - [sym_decimal_floating_point_literal] = ACTIONS(1003), - [sym_hex_floating_point_literal] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [sym_character_literal] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [sym_null_literal] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_final] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_case] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_assert] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_synchronized] = ACTIONS(1005), - [anon_sym_throw] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_open] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_with] = ACTIONS(1005), - [anon_sym_package] = ACTIONS(1005), - [anon_sym_import] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_public] = ACTIONS(1005), - [anon_sym_protected] = ACTIONS(1005), - [anon_sym_private] = ACTIONS(1005), - [anon_sym_abstract] = ACTIONS(1005), - [anon_sym_strictfp] = ACTIONS(1005), - [anon_sym_native] = ACTIONS(1005), - [anon_sym_transient] = ACTIONS(1005), - [anon_sym_volatile] = ACTIONS(1005), - [anon_sym_sealed] = ACTIONS(1005), - [anon_sym_non_DASHsealed] = ACTIONS(1003), - [anon_sym_record] = ACTIONS(1005), - [anon_sym_ATinterface] = ACTIONS(1003), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_byte] = ACTIONS(1005), - [anon_sym_short] = ACTIONS(1005), - [anon_sym_int] = ACTIONS(1005), - [anon_sym_long] = ACTIONS(1005), - [anon_sym_char] = ACTIONS(1005), - [anon_sym_float] = ACTIONS(1005), - [anon_sym_double] = ACTIONS(1005), - [sym_boolean_type] = ACTIONS(1005), - [sym_void_type] = ACTIONS(1005), - [sym_this] = ACTIONS(1005), - [sym_super] = ACTIONS(1005), + [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(1008), + [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), + [anon_sym_RBRACE] = ACTIONS(1006), + [sym_null_literal] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_LT] = 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_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_with] = 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), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1009), - [sym_decimal_integer_literal] = ACTIONS(1009), - [sym_hex_integer_literal] = ACTIONS(1009), - [sym_octal_integer_literal] = ACTIONS(1009), - [sym_binary_integer_literal] = ACTIONS(1007), - [sym_decimal_floating_point_literal] = ACTIONS(1007), - [sym_hex_floating_point_literal] = ACTIONS(1009), - [sym_true] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [sym_character_literal] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [sym_null_literal] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_final] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_new] = ACTIONS(1009), - [anon_sym_class] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_case] = ACTIONS(1009), - [anon_sym_default] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_assert] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_synchronized] = ACTIONS(1009), - [anon_sym_throw] = ACTIONS(1009), - [anon_sym_try] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym_open] = ACTIONS(1009), - [anon_sym_module] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_with] = ACTIONS(1009), - [anon_sym_package] = ACTIONS(1009), - [anon_sym_import] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_public] = ACTIONS(1009), - [anon_sym_protected] = ACTIONS(1009), - [anon_sym_private] = ACTIONS(1009), - [anon_sym_abstract] = ACTIONS(1009), - [anon_sym_strictfp] = ACTIONS(1009), - [anon_sym_native] = ACTIONS(1009), - [anon_sym_transient] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1009), - [anon_sym_sealed] = ACTIONS(1009), - [anon_sym_non_DASHsealed] = ACTIONS(1007), - [anon_sym_record] = ACTIONS(1009), - [anon_sym_ATinterface] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1009), - [anon_sym_byte] = ACTIONS(1009), - [anon_sym_short] = ACTIONS(1009), - [anon_sym_int] = ACTIONS(1009), - [anon_sym_long] = ACTIONS(1009), - [anon_sym_char] = ACTIONS(1009), - [anon_sym_float] = ACTIONS(1009), - [anon_sym_double] = ACTIONS(1009), - [sym_boolean_type] = ACTIONS(1009), - [sym_void_type] = ACTIONS(1009), - [sym_this] = ACTIONS(1009), - [sym_super] = ACTIONS(1009), + [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(1012), + [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), + [anon_sym_RBRACE] = ACTIONS(1010), + [sym_null_literal] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_LT] = 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_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_with] = 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), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1013), - [sym_decimal_integer_literal] = ACTIONS(1013), - [sym_hex_integer_literal] = ACTIONS(1013), - [sym_octal_integer_literal] = ACTIONS(1013), - [sym_binary_integer_literal] = ACTIONS(1011), - [sym_decimal_floating_point_literal] = ACTIONS(1011), - [sym_hex_floating_point_literal] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_character_literal] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [sym_null_literal] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_final] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_class] = ACTIONS(1013), - [anon_sym_switch] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_case] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_assert] = ACTIONS(1013), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1013), - [anon_sym_break] = ACTIONS(1013), - [anon_sym_continue] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1013), - [anon_sym_yield] = ACTIONS(1013), - [anon_sym_synchronized] = ACTIONS(1013), - [anon_sym_throw] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_else] = ACTIONS(1013), - [anon_sym_for] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym_open] = ACTIONS(1013), - [anon_sym_module] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1013), - [anon_sym_with] = ACTIONS(1013), - [anon_sym_package] = ACTIONS(1013), - [anon_sym_import] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1013), - [anon_sym_public] = ACTIONS(1013), - [anon_sym_protected] = ACTIONS(1013), - [anon_sym_private] = ACTIONS(1013), - [anon_sym_abstract] = ACTIONS(1013), - [anon_sym_strictfp] = ACTIONS(1013), - [anon_sym_native] = ACTIONS(1013), - [anon_sym_transient] = ACTIONS(1013), - [anon_sym_volatile] = ACTIONS(1013), - [anon_sym_sealed] = ACTIONS(1013), - [anon_sym_non_DASHsealed] = ACTIONS(1011), - [anon_sym_record] = ACTIONS(1013), - [anon_sym_ATinterface] = ACTIONS(1011), - [anon_sym_interface] = ACTIONS(1013), - [anon_sym_byte] = ACTIONS(1013), - [anon_sym_short] = ACTIONS(1013), - [anon_sym_int] = ACTIONS(1013), - [anon_sym_long] = ACTIONS(1013), - [anon_sym_char] = ACTIONS(1013), - [anon_sym_float] = ACTIONS(1013), - [anon_sym_double] = ACTIONS(1013), - [sym_boolean_type] = ACTIONS(1013), - [sym_void_type] = ACTIONS(1013), - [sym_this] = ACTIONS(1013), - [sym_super] = ACTIONS(1013), + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_decimal_integer_literal] = ACTIONS(1016), + [sym_hex_integer_literal] = ACTIONS(1016), + [sym_octal_integer_literal] = ACTIONS(1016), + [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), + [anon_sym_RBRACE] = ACTIONS(1014), + [sym_null_literal] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_LT] = 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_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_with] = 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), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1017), - [sym_decimal_integer_literal] = ACTIONS(1017), - [sym_hex_integer_literal] = ACTIONS(1017), - [sym_octal_integer_literal] = ACTIONS(1017), - [sym_binary_integer_literal] = ACTIONS(1015), - [sym_decimal_floating_point_literal] = ACTIONS(1015), - [sym_hex_floating_point_literal] = ACTIONS(1017), - [sym_true] = ACTIONS(1017), - [sym_false] = ACTIONS(1017), - [sym_character_literal] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1017), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [sym_null_literal] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_LT] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_final] = ACTIONS(1017), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_class] = ACTIONS(1017), - [anon_sym_switch] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_case] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_assert] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_yield] = ACTIONS(1017), - [anon_sym_synchronized] = ACTIONS(1017), - [anon_sym_throw] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_AT] = ACTIONS(1017), - [anon_sym_open] = ACTIONS(1017), - [anon_sym_module] = ACTIONS(1017), - [anon_sym_static] = ACTIONS(1017), - [anon_sym_with] = ACTIONS(1017), - [anon_sym_package] = ACTIONS(1017), - [anon_sym_import] = ACTIONS(1017), - [anon_sym_enum] = ACTIONS(1017), - [anon_sym_public] = ACTIONS(1017), - [anon_sym_protected] = ACTIONS(1017), - [anon_sym_private] = ACTIONS(1017), - [anon_sym_abstract] = ACTIONS(1017), - [anon_sym_strictfp] = ACTIONS(1017), - [anon_sym_native] = ACTIONS(1017), - [anon_sym_transient] = ACTIONS(1017), - [anon_sym_volatile] = ACTIONS(1017), - [anon_sym_sealed] = ACTIONS(1017), - [anon_sym_non_DASHsealed] = ACTIONS(1015), - [anon_sym_record] = ACTIONS(1017), - [anon_sym_ATinterface] = ACTIONS(1015), - [anon_sym_interface] = ACTIONS(1017), - [anon_sym_byte] = ACTIONS(1017), - [anon_sym_short] = ACTIONS(1017), - [anon_sym_int] = ACTIONS(1017), - [anon_sym_long] = ACTIONS(1017), - [anon_sym_char] = ACTIONS(1017), - [anon_sym_float] = ACTIONS(1017), - [anon_sym_double] = ACTIONS(1017), - [sym_boolean_type] = ACTIONS(1017), - [sym_void_type] = ACTIONS(1017), - [sym_this] = ACTIONS(1017), - [sym_super] = ACTIONS(1017), + [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(1020), + [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), + [anon_sym_RBRACE] = ACTIONS(1018), + [sym_null_literal] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(1018), + [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_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_with] = 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), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1019), - [sym_identifier] = ACTIONS(1021), - [sym_decimal_integer_literal] = ACTIONS(1021), - [sym_hex_integer_literal] = ACTIONS(1021), - [sym_octal_integer_literal] = ACTIONS(1021), - [sym_binary_integer_literal] = ACTIONS(1019), - [sym_decimal_floating_point_literal] = ACTIONS(1019), - [sym_hex_floating_point_literal] = ACTIONS(1021), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [sym_character_literal] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [sym_null_literal] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_final] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1019), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_case] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_assert] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_synchronized] = ACTIONS(1021), - [anon_sym_throw] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_open] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_with] = ACTIONS(1021), - [anon_sym_package] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_public] = ACTIONS(1021), - [anon_sym_protected] = ACTIONS(1021), - [anon_sym_private] = ACTIONS(1021), - [anon_sym_abstract] = ACTIONS(1021), - [anon_sym_strictfp] = ACTIONS(1021), - [anon_sym_native] = ACTIONS(1021), - [anon_sym_transient] = ACTIONS(1021), - [anon_sym_volatile] = ACTIONS(1021), - [anon_sym_sealed] = ACTIONS(1021), - [anon_sym_non_DASHsealed] = ACTIONS(1019), - [anon_sym_record] = ACTIONS(1021), - [anon_sym_ATinterface] = ACTIONS(1019), - [anon_sym_interface] = ACTIONS(1021), - [anon_sym_byte] = ACTIONS(1021), - [anon_sym_short] = ACTIONS(1021), - [anon_sym_int] = ACTIONS(1021), - [anon_sym_long] = ACTIONS(1021), - [anon_sym_char] = ACTIONS(1021), - [anon_sym_float] = ACTIONS(1021), - [anon_sym_double] = ACTIONS(1021), - [sym_boolean_type] = ACTIONS(1021), - [sym_void_type] = ACTIONS(1021), - [sym_this] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), + [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(1024), + [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), + [anon_sym_RBRACE] = ACTIONS(1022), + [sym_null_literal] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_LT] = 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_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(1024), + [anon_sym_with] = 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_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), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_identifier] = ACTIONS(1025), - [sym_decimal_integer_literal] = ACTIONS(1025), - [sym_hex_integer_literal] = ACTIONS(1025), - [sym_octal_integer_literal] = ACTIONS(1025), - [sym_binary_integer_literal] = ACTIONS(1023), - [sym_decimal_floating_point_literal] = ACTIONS(1023), - [sym_hex_floating_point_literal] = ACTIONS(1025), - [sym_true] = ACTIONS(1025), - [sym_false] = ACTIONS(1025), - [sym_character_literal] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1025), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [sym_null_literal] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_final] = ACTIONS(1025), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_TILDE] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_new] = ACTIONS(1025), - [anon_sym_class] = ACTIONS(1025), - [anon_sym_switch] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_case] = ACTIONS(1025), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_assert] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_synchronized] = ACTIONS(1025), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_else] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1025), - [anon_sym_open] = ACTIONS(1025), - [anon_sym_module] = ACTIONS(1025), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_with] = ACTIONS(1025), - [anon_sym_package] = ACTIONS(1025), - [anon_sym_import] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_public] = ACTIONS(1025), - [anon_sym_protected] = ACTIONS(1025), - [anon_sym_private] = ACTIONS(1025), - [anon_sym_abstract] = ACTIONS(1025), - [anon_sym_strictfp] = ACTIONS(1025), - [anon_sym_native] = ACTIONS(1025), - [anon_sym_transient] = ACTIONS(1025), - [anon_sym_volatile] = ACTIONS(1025), - [anon_sym_sealed] = ACTIONS(1025), - [anon_sym_non_DASHsealed] = ACTIONS(1023), - [anon_sym_record] = ACTIONS(1025), - [anon_sym_ATinterface] = ACTIONS(1023), - [anon_sym_interface] = ACTIONS(1025), - [anon_sym_byte] = ACTIONS(1025), - [anon_sym_short] = ACTIONS(1025), - [anon_sym_int] = ACTIONS(1025), - [anon_sym_long] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_float] = ACTIONS(1025), - [anon_sym_double] = ACTIONS(1025), - [sym_boolean_type] = ACTIONS(1025), - [sym_void_type] = ACTIONS(1025), - [sym_this] = ACTIONS(1025), - [sym_super] = ACTIONS(1025), + [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(1028), + [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), + [anon_sym_RBRACE] = ACTIONS(1026), + [sym_null_literal] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_LT] = 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_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_with] = 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), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1027), - [sym_identifier] = ACTIONS(1029), - [sym_decimal_integer_literal] = ACTIONS(1029), - [sym_hex_integer_literal] = ACTIONS(1029), - [sym_octal_integer_literal] = ACTIONS(1029), - [sym_binary_integer_literal] = ACTIONS(1027), - [sym_decimal_floating_point_literal] = ACTIONS(1027), - [sym_hex_floating_point_literal] = ACTIONS(1029), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [sym_character_literal] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1029), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [sym_null_literal] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_final] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1027), - [anon_sym_DASH_DASH] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_case] = ACTIONS(1029), - [anon_sym_default] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_synchronized] = ACTIONS(1029), - [anon_sym_throw] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_else] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym_open] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - [anon_sym_static] = ACTIONS(1029), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_package] = ACTIONS(1029), - [anon_sym_import] = ACTIONS(1029), - [anon_sym_enum] = ACTIONS(1029), - [anon_sym_public] = ACTIONS(1029), - [anon_sym_protected] = ACTIONS(1029), - [anon_sym_private] = ACTIONS(1029), - [anon_sym_abstract] = ACTIONS(1029), - [anon_sym_strictfp] = ACTIONS(1029), - [anon_sym_native] = ACTIONS(1029), - [anon_sym_transient] = ACTIONS(1029), - [anon_sym_volatile] = ACTIONS(1029), - [anon_sym_sealed] = ACTIONS(1029), - [anon_sym_non_DASHsealed] = ACTIONS(1027), - [anon_sym_record] = ACTIONS(1029), - [anon_sym_ATinterface] = ACTIONS(1027), - [anon_sym_interface] = ACTIONS(1029), - [anon_sym_byte] = ACTIONS(1029), - [anon_sym_short] = ACTIONS(1029), - [anon_sym_int] = ACTIONS(1029), - [anon_sym_long] = ACTIONS(1029), - [anon_sym_char] = ACTIONS(1029), - [anon_sym_float] = ACTIONS(1029), - [anon_sym_double] = ACTIONS(1029), - [sym_boolean_type] = ACTIONS(1029), - [sym_void_type] = ACTIONS(1029), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(1029), + [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(1032), + [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(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [sym_null_literal] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_LT] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_final] = ACTIONS(1032), + [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(1030), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1030), + [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_else] = 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_with] = 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(1030), + [anon_sym_record] = ACTIONS(1032), + [anon_sym_ATinterface] = ACTIONS(1030), + [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), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1031), - [sym_identifier] = ACTIONS(1033), - [sym_decimal_integer_literal] = ACTIONS(1033), - [sym_hex_integer_literal] = ACTIONS(1033), - [sym_octal_integer_literal] = ACTIONS(1033), - [sym_binary_integer_literal] = ACTIONS(1031), - [sym_decimal_floating_point_literal] = ACTIONS(1031), - [sym_hex_floating_point_literal] = ACTIONS(1033), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [sym_character_literal] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [sym_null_literal] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_final] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_TILDE] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_switch] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_case] = ACTIONS(1033), - [anon_sym_default] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_assert] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_yield] = ACTIONS(1033), - [anon_sym_synchronized] = ACTIONS(1033), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_with] = ACTIONS(1033), - [anon_sym_package] = ACTIONS(1033), - [anon_sym_import] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_public] = ACTIONS(1033), - [anon_sym_protected] = ACTIONS(1033), - [anon_sym_private] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_strictfp] = ACTIONS(1033), - [anon_sym_native] = ACTIONS(1033), - [anon_sym_transient] = ACTIONS(1033), - [anon_sym_volatile] = ACTIONS(1033), - [anon_sym_sealed] = ACTIONS(1033), - [anon_sym_non_DASHsealed] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1033), - [anon_sym_ATinterface] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_byte] = ACTIONS(1033), - [anon_sym_short] = ACTIONS(1033), - [anon_sym_int] = ACTIONS(1033), - [anon_sym_long] = ACTIONS(1033), - [anon_sym_char] = ACTIONS(1033), - [anon_sym_float] = ACTIONS(1033), - [anon_sym_double] = ACTIONS(1033), - [sym_boolean_type] = ACTIONS(1033), - [sym_void_type] = ACTIONS(1033), - [sym_this] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), + [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(1036), + [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(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [sym_null_literal] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_final] = ACTIONS(1036), + [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(1034), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1034), + [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_else] = 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_with] = 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(1034), + [anon_sym_record] = ACTIONS(1036), + [anon_sym_ATinterface] = ACTIONS(1034), + [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), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1037), - [sym_decimal_integer_literal] = ACTIONS(1037), - [sym_hex_integer_literal] = ACTIONS(1037), - [sym_octal_integer_literal] = ACTIONS(1037), - [sym_binary_integer_literal] = ACTIONS(1035), - [sym_decimal_floating_point_literal] = ACTIONS(1035), - [sym_hex_floating_point_literal] = ACTIONS(1037), - [sym_true] = ACTIONS(1037), - [sym_false] = ACTIONS(1037), - [sym_character_literal] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [sym_null_literal] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_final] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(1035), - [anon_sym_new] = ACTIONS(1037), - [anon_sym_class] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_assert] = ACTIONS(1037), - [anon_sym_do] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1037), - [anon_sym_synchronized] = ACTIONS(1037), - [anon_sym_throw] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1037), - [anon_sym_open] = ACTIONS(1037), - [anon_sym_module] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_with] = ACTIONS(1037), - [anon_sym_package] = ACTIONS(1037), - [anon_sym_import] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_public] = ACTIONS(1037), - [anon_sym_protected] = ACTIONS(1037), - [anon_sym_private] = ACTIONS(1037), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_strictfp] = ACTIONS(1037), - [anon_sym_native] = ACTIONS(1037), - [anon_sym_transient] = ACTIONS(1037), - [anon_sym_volatile] = ACTIONS(1037), - [anon_sym_sealed] = ACTIONS(1037), - [anon_sym_non_DASHsealed] = ACTIONS(1035), - [anon_sym_record] = ACTIONS(1037), - [anon_sym_ATinterface] = ACTIONS(1035), - [anon_sym_interface] = ACTIONS(1037), - [anon_sym_byte] = ACTIONS(1037), - [anon_sym_short] = ACTIONS(1037), - [anon_sym_int] = ACTIONS(1037), - [anon_sym_long] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_float] = ACTIONS(1037), - [anon_sym_double] = ACTIONS(1037), - [sym_boolean_type] = ACTIONS(1037), - [sym_void_type] = ACTIONS(1037), - [sym_this] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1040), + [sym_decimal_integer_literal] = ACTIONS(1040), + [sym_hex_integer_literal] = ACTIONS(1040), + [sym_octal_integer_literal] = ACTIONS(1040), + [sym_binary_integer_literal] = ACTIONS(1038), + [sym_decimal_floating_point_literal] = ACTIONS(1038), + [sym_hex_floating_point_literal] = ACTIONS(1040), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_character_literal] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1040), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [sym_null_literal] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_final] = ACTIONS(1040), + [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(1040), + [anon_sym_class] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1038), + [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_else] = 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_with] = 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(1038), + [anon_sym_record] = ACTIONS(1040), + [anon_sym_ATinterface] = ACTIONS(1038), + [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), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1041), - [sym_decimal_integer_literal] = ACTIONS(1041), - [sym_hex_integer_literal] = ACTIONS(1041), - [sym_octal_integer_literal] = ACTIONS(1041), - [sym_binary_integer_literal] = ACTIONS(1039), - [sym_decimal_floating_point_literal] = ACTIONS(1039), - [sym_hex_floating_point_literal] = ACTIONS(1041), - [sym_true] = ACTIONS(1041), - [sym_false] = ACTIONS(1041), - [sym_character_literal] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [sym_null_literal] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_final] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [anon_sym_new] = ACTIONS(1041), - [anon_sym_class] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_assert] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_yield] = ACTIONS(1041), - [anon_sym_synchronized] = ACTIONS(1041), - [anon_sym_throw] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), - [anon_sym_open] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_with] = ACTIONS(1041), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_import] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1041), - [anon_sym_strictfp] = ACTIONS(1041), - [anon_sym_native] = ACTIONS(1041), - [anon_sym_transient] = ACTIONS(1041), - [anon_sym_volatile] = ACTIONS(1041), - [anon_sym_sealed] = ACTIONS(1041), - [anon_sym_non_DASHsealed] = ACTIONS(1039), - [anon_sym_record] = ACTIONS(1041), - [anon_sym_ATinterface] = ACTIONS(1039), - [anon_sym_interface] = ACTIONS(1041), - [anon_sym_byte] = ACTIONS(1041), - [anon_sym_short] = ACTIONS(1041), - [anon_sym_int] = ACTIONS(1041), - [anon_sym_long] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_float] = ACTIONS(1041), - [anon_sym_double] = ACTIONS(1041), - [sym_boolean_type] = ACTIONS(1041), - [sym_void_type] = ACTIONS(1041), - [sym_this] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1044), + [sym_decimal_integer_literal] = ACTIONS(1044), + [sym_hex_integer_literal] = ACTIONS(1044), + [sym_octal_integer_literal] = ACTIONS(1044), + [sym_binary_integer_literal] = ACTIONS(1042), + [sym_decimal_floating_point_literal] = ACTIONS(1042), + [sym_hex_floating_point_literal] = ACTIONS(1044), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_character_literal] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [sym_null_literal] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_final] = ACTIONS(1044), + [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(1044), + [anon_sym_class] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_assert] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_yield] = ACTIONS(1044), + [anon_sym_synchronized] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_AT] = ACTIONS(1044), + [anon_sym_open] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_package] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_public] = ACTIONS(1044), + [anon_sym_protected] = ACTIONS(1044), + [anon_sym_private] = ACTIONS(1044), + [anon_sym_abstract] = ACTIONS(1044), + [anon_sym_strictfp] = ACTIONS(1044), + [anon_sym_native] = ACTIONS(1044), + [anon_sym_transient] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_sealed] = ACTIONS(1044), + [anon_sym_non_DASHsealed] = ACTIONS(1042), + [anon_sym_record] = ACTIONS(1044), + [anon_sym_ATinterface] = ACTIONS(1042), + [anon_sym_interface] = ACTIONS(1044), + [anon_sym_byte] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [anon_sym_int] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_char] = ACTIONS(1044), + [anon_sym_float] = ACTIONS(1044), + [anon_sym_double] = ACTIONS(1044), + [sym_boolean_type] = ACTIONS(1044), + [sym_void_type] = ACTIONS(1044), + [sym_this] = ACTIONS(1044), + [sym_super] = ACTIONS(1044), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1045), - [sym_decimal_integer_literal] = ACTIONS(1045), - [sym_hex_integer_literal] = ACTIONS(1045), - [sym_octal_integer_literal] = ACTIONS(1045), - [sym_binary_integer_literal] = ACTIONS(1043), - [sym_decimal_floating_point_literal] = ACTIONS(1043), - [sym_hex_floating_point_literal] = ACTIONS(1045), - [sym_true] = ACTIONS(1045), - [sym_false] = ACTIONS(1045), - [sym_character_literal] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [sym_null_literal] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_final] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(1045), - [anon_sym_class] = ACTIONS(1045), - [anon_sym_switch] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_case] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_assert] = ACTIONS(1045), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_synchronized] = ACTIONS(1045), - [anon_sym_throw] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_else] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(1045), - [anon_sym_open] = ACTIONS(1045), - [anon_sym_module] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_with] = ACTIONS(1045), - [anon_sym_package] = ACTIONS(1045), - [anon_sym_import] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_public] = ACTIONS(1045), - [anon_sym_protected] = ACTIONS(1045), - [anon_sym_private] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1045), - [anon_sym_strictfp] = ACTIONS(1045), - [anon_sym_native] = ACTIONS(1045), - [anon_sym_transient] = ACTIONS(1045), - [anon_sym_volatile] = ACTIONS(1045), - [anon_sym_sealed] = ACTIONS(1045), - [anon_sym_non_DASHsealed] = ACTIONS(1043), - [anon_sym_record] = ACTIONS(1045), - [anon_sym_ATinterface] = ACTIONS(1043), - [anon_sym_interface] = ACTIONS(1045), - [anon_sym_byte] = ACTIONS(1045), - [anon_sym_short] = ACTIONS(1045), - [anon_sym_int] = ACTIONS(1045), - [anon_sym_long] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_float] = ACTIONS(1045), - [anon_sym_double] = ACTIONS(1045), - [sym_boolean_type] = ACTIONS(1045), - [sym_void_type] = ACTIONS(1045), - [sym_this] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1048), + [sym_decimal_integer_literal] = ACTIONS(1048), + [sym_hex_integer_literal] = ACTIONS(1048), + [sym_octal_integer_literal] = ACTIONS(1048), + [sym_binary_integer_literal] = ACTIONS(1046), + [sym_decimal_floating_point_literal] = ACTIONS(1046), + [sym_hex_floating_point_literal] = ACTIONS(1048), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_character_literal] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [sym_null_literal] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_final] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_assert] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1048), + [anon_sym_synchronized] = ACTIONS(1048), + [anon_sym_throw] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym_open] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_with] = ACTIONS(1048), + [anon_sym_package] = ACTIONS(1048), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_abstract] = ACTIONS(1048), + [anon_sym_strictfp] = ACTIONS(1048), + [anon_sym_native] = ACTIONS(1048), + [anon_sym_transient] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_sealed] = ACTIONS(1048), + [anon_sym_non_DASHsealed] = ACTIONS(1046), + [anon_sym_record] = ACTIONS(1048), + [anon_sym_ATinterface] = ACTIONS(1046), + [anon_sym_interface] = ACTIONS(1048), + [anon_sym_byte] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [anon_sym_int] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_char] = ACTIONS(1048), + [anon_sym_float] = ACTIONS(1048), + [anon_sym_double] = ACTIONS(1048), + [sym_boolean_type] = ACTIONS(1048), + [sym_void_type] = ACTIONS(1048), + [sym_this] = ACTIONS(1048), + [sym_super] = ACTIONS(1048), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1049), - [sym_decimal_integer_literal] = ACTIONS(1049), - [sym_hex_integer_literal] = ACTIONS(1049), - [sym_octal_integer_literal] = ACTIONS(1049), - [sym_binary_integer_literal] = ACTIONS(1047), - [sym_decimal_floating_point_literal] = ACTIONS(1047), - [sym_hex_floating_point_literal] = ACTIONS(1049), - [sym_true] = ACTIONS(1049), - [sym_false] = ACTIONS(1049), - [sym_character_literal] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [sym_null_literal] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LT] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_final] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_PLUS_PLUS] = ACTIONS(1047), - [anon_sym_DASH_DASH] = ACTIONS(1047), - [anon_sym_new] = ACTIONS(1049), - [anon_sym_class] = ACTIONS(1049), - [anon_sym_switch] = ACTIONS(1049), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_case] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_assert] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1049), - [anon_sym_synchronized] = ACTIONS(1049), - [anon_sym_throw] = ACTIONS(1049), - [anon_sym_try] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_else] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_AT] = ACTIONS(1049), - [anon_sym_open] = ACTIONS(1049), - [anon_sym_module] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_with] = ACTIONS(1049), - [anon_sym_package] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_public] = ACTIONS(1049), - [anon_sym_protected] = ACTIONS(1049), - [anon_sym_private] = ACTIONS(1049), - [anon_sym_abstract] = ACTIONS(1049), - [anon_sym_strictfp] = ACTIONS(1049), - [anon_sym_native] = ACTIONS(1049), - [anon_sym_transient] = ACTIONS(1049), - [anon_sym_volatile] = ACTIONS(1049), - [anon_sym_sealed] = ACTIONS(1049), - [anon_sym_non_DASHsealed] = ACTIONS(1047), - [anon_sym_record] = ACTIONS(1049), - [anon_sym_ATinterface] = ACTIONS(1047), - [anon_sym_interface] = ACTIONS(1049), - [anon_sym_byte] = ACTIONS(1049), - [anon_sym_short] = ACTIONS(1049), - [anon_sym_int] = ACTIONS(1049), - [anon_sym_long] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_float] = ACTIONS(1049), - [anon_sym_double] = ACTIONS(1049), - [sym_boolean_type] = ACTIONS(1049), - [sym_void_type] = ACTIONS(1049), - [sym_this] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1052), + [sym_decimal_integer_literal] = ACTIONS(1052), + [sym_hex_integer_literal] = ACTIONS(1052), + [sym_octal_integer_literal] = ACTIONS(1052), + [sym_binary_integer_literal] = ACTIONS(1050), + [sym_decimal_floating_point_literal] = ACTIONS(1050), + [sym_hex_floating_point_literal] = ACTIONS(1052), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_character_literal] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1052), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [sym_null_literal] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_final] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_class] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1052), + [anon_sym_synchronized] = ACTIONS(1052), + [anon_sym_throw] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_open] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_with] = ACTIONS(1052), + [anon_sym_package] = ACTIONS(1052), + [anon_sym_import] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_public] = ACTIONS(1052), + [anon_sym_protected] = ACTIONS(1052), + [anon_sym_private] = ACTIONS(1052), + [anon_sym_abstract] = ACTIONS(1052), + [anon_sym_strictfp] = ACTIONS(1052), + [anon_sym_native] = ACTIONS(1052), + [anon_sym_transient] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_sealed] = ACTIONS(1052), + [anon_sym_non_DASHsealed] = ACTIONS(1050), + [anon_sym_record] = ACTIONS(1052), + [anon_sym_ATinterface] = ACTIONS(1050), + [anon_sym_interface] = ACTIONS(1052), + [anon_sym_byte] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [anon_sym_int] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_char] = ACTIONS(1052), + [anon_sym_float] = ACTIONS(1052), + [anon_sym_double] = ACTIONS(1052), + [sym_boolean_type] = ACTIONS(1052), + [sym_void_type] = ACTIONS(1052), + [sym_this] = ACTIONS(1052), + [sym_super] = ACTIONS(1052), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1053), - [sym_decimal_integer_literal] = ACTIONS(1053), - [sym_hex_integer_literal] = ACTIONS(1053), - [sym_octal_integer_literal] = ACTIONS(1053), - [sym_binary_integer_literal] = ACTIONS(1051), - [sym_decimal_floating_point_literal] = ACTIONS(1051), - [sym_hex_floating_point_literal] = ACTIONS(1053), - [sym_true] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [sym_character_literal] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [sym_null_literal] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_final] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [anon_sym_new] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_assert] = ACTIONS(1053), - [anon_sym_do] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_yield] = ACTIONS(1053), - [anon_sym_synchronized] = ACTIONS(1053), - [anon_sym_throw] = ACTIONS(1053), - [anon_sym_try] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_AT] = ACTIONS(1053), - [anon_sym_open] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_with] = ACTIONS(1053), - [anon_sym_package] = ACTIONS(1053), - [anon_sym_import] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_abstract] = ACTIONS(1053), - [anon_sym_strictfp] = ACTIONS(1053), - [anon_sym_native] = ACTIONS(1053), - [anon_sym_transient] = ACTIONS(1053), - [anon_sym_volatile] = ACTIONS(1053), - [anon_sym_sealed] = ACTIONS(1053), - [anon_sym_non_DASHsealed] = ACTIONS(1051), - [anon_sym_record] = ACTIONS(1053), - [anon_sym_ATinterface] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_byte] = ACTIONS(1053), - [anon_sym_short] = ACTIONS(1053), - [anon_sym_int] = ACTIONS(1053), - [anon_sym_long] = ACTIONS(1053), - [anon_sym_char] = ACTIONS(1053), - [anon_sym_float] = ACTIONS(1053), - [anon_sym_double] = ACTIONS(1053), - [sym_boolean_type] = ACTIONS(1053), - [sym_void_type] = ACTIONS(1053), - [sym_this] = ACTIONS(1053), - [sym_super] = ACTIONS(1053), + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1056), + [sym_decimal_integer_literal] = ACTIONS(1056), + [sym_hex_integer_literal] = ACTIONS(1056), + [sym_octal_integer_literal] = ACTIONS(1056), + [sym_binary_integer_literal] = ACTIONS(1054), + [sym_decimal_floating_point_literal] = ACTIONS(1054), + [sym_hex_floating_point_literal] = ACTIONS(1056), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_character_literal] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [sym_null_literal] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_final] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1056), + [anon_sym_class] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_assert] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_synchronized] = ACTIONS(1056), + [anon_sym_throw] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_AT] = ACTIONS(1056), + [anon_sym_open] = ACTIONS(1056), + [anon_sym_module] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_with] = ACTIONS(1056), + [anon_sym_package] = ACTIONS(1056), + [anon_sym_import] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_public] = ACTIONS(1056), + [anon_sym_protected] = ACTIONS(1056), + [anon_sym_private] = ACTIONS(1056), + [anon_sym_abstract] = ACTIONS(1056), + [anon_sym_strictfp] = ACTIONS(1056), + [anon_sym_native] = ACTIONS(1056), + [anon_sym_transient] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_sealed] = ACTIONS(1056), + [anon_sym_non_DASHsealed] = ACTIONS(1054), + [anon_sym_record] = ACTIONS(1056), + [anon_sym_ATinterface] = ACTIONS(1054), + [anon_sym_interface] = ACTIONS(1056), + [anon_sym_byte] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [anon_sym_int] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_char] = ACTIONS(1056), + [anon_sym_float] = ACTIONS(1056), + [anon_sym_double] = ACTIONS(1056), + [sym_boolean_type] = ACTIONS(1056), + [sym_void_type] = ACTIONS(1056), + [sym_this] = ACTIONS(1056), + [sym_super] = ACTIONS(1056), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1057), - [sym_decimal_integer_literal] = ACTIONS(1057), - [sym_hex_integer_literal] = ACTIONS(1057), - [sym_octal_integer_literal] = ACTIONS(1057), - [sym_binary_integer_literal] = ACTIONS(1055), - [sym_decimal_floating_point_literal] = ACTIONS(1055), - [sym_hex_floating_point_literal] = ACTIONS(1057), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_character_literal] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [sym_null_literal] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_final] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_case] = ACTIONS(1057), - [anon_sym_default] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_assert] = ACTIONS(1057), - [anon_sym_do] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_yield] = ACTIONS(1057), - [anon_sym_synchronized] = ACTIONS(1057), - [anon_sym_throw] = ACTIONS(1057), - [anon_sym_try] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_open] = ACTIONS(1057), - [anon_sym_module] = ACTIONS(1057), - [anon_sym_static] = ACTIONS(1057), - [anon_sym_with] = ACTIONS(1057), - [anon_sym_package] = ACTIONS(1057), - [anon_sym_import] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1057), - [anon_sym_public] = ACTIONS(1057), - [anon_sym_protected] = ACTIONS(1057), - [anon_sym_private] = ACTIONS(1057), - [anon_sym_abstract] = ACTIONS(1057), - [anon_sym_strictfp] = ACTIONS(1057), - [anon_sym_native] = ACTIONS(1057), - [anon_sym_transient] = ACTIONS(1057), - [anon_sym_volatile] = ACTIONS(1057), - [anon_sym_sealed] = ACTIONS(1057), - [anon_sym_non_DASHsealed] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1057), - [anon_sym_ATinterface] = ACTIONS(1055), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_byte] = ACTIONS(1057), - [anon_sym_short] = ACTIONS(1057), - [anon_sym_int] = ACTIONS(1057), - [anon_sym_long] = ACTIONS(1057), - [anon_sym_char] = ACTIONS(1057), - [anon_sym_float] = ACTIONS(1057), - [anon_sym_double] = ACTIONS(1057), - [sym_boolean_type] = ACTIONS(1057), - [sym_void_type] = ACTIONS(1057), - [sym_this] = ACTIONS(1057), - [sym_super] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1060), + [sym_decimal_integer_literal] = ACTIONS(1060), + [sym_hex_integer_literal] = ACTIONS(1060), + [sym_octal_integer_literal] = ACTIONS(1060), + [sym_binary_integer_literal] = ACTIONS(1058), + [sym_decimal_floating_point_literal] = ACTIONS(1058), + [sym_hex_floating_point_literal] = ACTIONS(1060), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_character_literal] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1060), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [sym_null_literal] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_final] = ACTIONS(1060), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_assert] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_yield] = ACTIONS(1060), + [anon_sym_synchronized] = ACTIONS(1060), + [anon_sym_throw] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1060), + [anon_sym_open] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_with] = ACTIONS(1060), + [anon_sym_package] = ACTIONS(1060), + [anon_sym_import] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_public] = ACTIONS(1060), + [anon_sym_protected] = ACTIONS(1060), + [anon_sym_private] = ACTIONS(1060), + [anon_sym_abstract] = ACTIONS(1060), + [anon_sym_strictfp] = ACTIONS(1060), + [anon_sym_native] = ACTIONS(1060), + [anon_sym_transient] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_sealed] = ACTIONS(1060), + [anon_sym_non_DASHsealed] = ACTIONS(1058), + [anon_sym_record] = ACTIONS(1060), + [anon_sym_ATinterface] = ACTIONS(1058), + [anon_sym_interface] = ACTIONS(1060), + [anon_sym_byte] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [anon_sym_int] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_char] = ACTIONS(1060), + [anon_sym_float] = ACTIONS(1060), + [anon_sym_double] = ACTIONS(1060), + [sym_boolean_type] = ACTIONS(1060), + [sym_void_type] = ACTIONS(1060), + [sym_this] = ACTIONS(1060), + [sym_super] = ACTIONS(1060), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1061), - [sym_decimal_integer_literal] = ACTIONS(1061), - [sym_hex_integer_literal] = ACTIONS(1061), - [sym_octal_integer_literal] = ACTIONS(1061), - [sym_binary_integer_literal] = ACTIONS(1059), - [sym_decimal_floating_point_literal] = ACTIONS(1059), - [sym_hex_floating_point_literal] = ACTIONS(1061), - [sym_true] = ACTIONS(1061), - [sym_false] = ACTIONS(1061), - [sym_character_literal] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1061), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [sym_null_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_final] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_switch] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_case] = ACTIONS(1061), - [anon_sym_default] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_assert] = ACTIONS(1061), - [anon_sym_do] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1061), - [anon_sym_break] = ACTIONS(1061), - [anon_sym_continue] = ACTIONS(1061), - [anon_sym_return] = ACTIONS(1061), - [anon_sym_yield] = ACTIONS(1061), - [anon_sym_synchronized] = ACTIONS(1061), - [anon_sym_throw] = ACTIONS(1061), - [anon_sym_try] = ACTIONS(1061), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_else] = ACTIONS(1061), - [anon_sym_for] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(1061), - [anon_sym_open] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_with] = ACTIONS(1061), - [anon_sym_package] = ACTIONS(1061), - [anon_sym_import] = ACTIONS(1061), - [anon_sym_enum] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_abstract] = ACTIONS(1061), - [anon_sym_strictfp] = ACTIONS(1061), - [anon_sym_native] = ACTIONS(1061), - [anon_sym_transient] = ACTIONS(1061), - [anon_sym_volatile] = ACTIONS(1061), - [anon_sym_sealed] = ACTIONS(1061), - [anon_sym_non_DASHsealed] = ACTIONS(1059), - [anon_sym_record] = ACTIONS(1061), - [anon_sym_ATinterface] = ACTIONS(1059), - [anon_sym_interface] = ACTIONS(1061), - [anon_sym_byte] = ACTIONS(1061), - [anon_sym_short] = ACTIONS(1061), - [anon_sym_int] = ACTIONS(1061), - [anon_sym_long] = ACTIONS(1061), - [anon_sym_char] = ACTIONS(1061), - [anon_sym_float] = ACTIONS(1061), - [anon_sym_double] = ACTIONS(1061), - [sym_boolean_type] = ACTIONS(1061), - [sym_void_type] = ACTIONS(1061), - [sym_this] = ACTIONS(1061), - [sym_super] = ACTIONS(1061), + [ts_builtin_sym_end] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1064), + [sym_decimal_integer_literal] = ACTIONS(1064), + [sym_hex_integer_literal] = ACTIONS(1064), + [sym_octal_integer_literal] = ACTIONS(1064), + [sym_binary_integer_literal] = ACTIONS(1062), + [sym_decimal_floating_point_literal] = ACTIONS(1062), + [sym_hex_floating_point_literal] = ACTIONS(1064), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_character_literal] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [sym_null_literal] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_LT] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_final] = ACTIONS(1064), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_class] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_assert] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_yield] = ACTIONS(1064), + [anon_sym_synchronized] = ACTIONS(1064), + [anon_sym_throw] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_AT] = ACTIONS(1064), + [anon_sym_open] = ACTIONS(1064), + [anon_sym_module] = ACTIONS(1064), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_with] = ACTIONS(1064), + [anon_sym_package] = ACTIONS(1064), + [anon_sym_import] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_public] = ACTIONS(1064), + [anon_sym_protected] = ACTIONS(1064), + [anon_sym_private] = ACTIONS(1064), + [anon_sym_abstract] = ACTIONS(1064), + [anon_sym_strictfp] = ACTIONS(1064), + [anon_sym_native] = ACTIONS(1064), + [anon_sym_transient] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_sealed] = ACTIONS(1064), + [anon_sym_non_DASHsealed] = ACTIONS(1062), + [anon_sym_record] = ACTIONS(1064), + [anon_sym_ATinterface] = ACTIONS(1062), + [anon_sym_interface] = ACTIONS(1064), + [anon_sym_byte] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [anon_sym_int] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_float] = ACTIONS(1064), + [anon_sym_double] = ACTIONS(1064), + [sym_boolean_type] = ACTIONS(1064), + [sym_void_type] = ACTIONS(1064), + [sym_this] = ACTIONS(1064), + [sym_super] = ACTIONS(1064), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [sym_decimal_integer_literal] = ACTIONS(1065), - [sym_hex_integer_literal] = ACTIONS(1065), - [sym_octal_integer_literal] = ACTIONS(1065), - [sym_binary_integer_literal] = ACTIONS(1063), - [sym_decimal_floating_point_literal] = ACTIONS(1063), - [sym_hex_floating_point_literal] = ACTIONS(1065), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_character_literal] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [sym_null_literal] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_final] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_class] = ACTIONS(1065), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(1065), - [anon_sym_default] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_assert] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_synchronized] = ACTIONS(1065), - [anon_sym_throw] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1065), - [anon_sym_open] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_with] = ACTIONS(1065), - [anon_sym_package] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_enum] = ACTIONS(1065), - [anon_sym_public] = ACTIONS(1065), - [anon_sym_protected] = ACTIONS(1065), - [anon_sym_private] = ACTIONS(1065), - [anon_sym_abstract] = ACTIONS(1065), - [anon_sym_strictfp] = ACTIONS(1065), - [anon_sym_native] = ACTIONS(1065), - [anon_sym_transient] = ACTIONS(1065), - [anon_sym_volatile] = ACTIONS(1065), - [anon_sym_sealed] = ACTIONS(1065), - [anon_sym_non_DASHsealed] = ACTIONS(1063), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_ATinterface] = ACTIONS(1063), - [anon_sym_interface] = ACTIONS(1065), - [anon_sym_byte] = ACTIONS(1065), - [anon_sym_short] = ACTIONS(1065), - [anon_sym_int] = ACTIONS(1065), - [anon_sym_long] = ACTIONS(1065), - [anon_sym_char] = ACTIONS(1065), - [anon_sym_float] = ACTIONS(1065), - [anon_sym_double] = ACTIONS(1065), - [sym_boolean_type] = ACTIONS(1065), - [sym_void_type] = ACTIONS(1065), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1068), + [sym_decimal_integer_literal] = ACTIONS(1068), + [sym_hex_integer_literal] = ACTIONS(1068), + [sym_octal_integer_literal] = ACTIONS(1068), + [sym_binary_integer_literal] = ACTIONS(1066), + [sym_decimal_floating_point_literal] = ACTIONS(1066), + [sym_hex_floating_point_literal] = ACTIONS(1068), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_character_literal] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [sym_null_literal] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_final] = ACTIONS(1068), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_class] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_assert] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_yield] = ACTIONS(1068), + [anon_sym_synchronized] = ACTIONS(1068), + [anon_sym_throw] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_AT] = ACTIONS(1068), + [anon_sym_open] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_with] = ACTIONS(1068), + [anon_sym_package] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_abstract] = ACTIONS(1068), + [anon_sym_strictfp] = ACTIONS(1068), + [anon_sym_native] = ACTIONS(1068), + [anon_sym_transient] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_sealed] = ACTIONS(1068), + [anon_sym_non_DASHsealed] = ACTIONS(1066), + [anon_sym_record] = ACTIONS(1068), + [anon_sym_ATinterface] = ACTIONS(1066), + [anon_sym_interface] = ACTIONS(1068), + [anon_sym_byte] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [anon_sym_int] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_char] = ACTIONS(1068), + [anon_sym_float] = ACTIONS(1068), + [anon_sym_double] = ACTIONS(1068), + [sym_boolean_type] = ACTIONS(1068), + [sym_void_type] = ACTIONS(1068), + [sym_this] = ACTIONS(1068), + [sym_super] = ACTIONS(1068), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1067), - [sym_identifier] = ACTIONS(1069), - [sym_decimal_integer_literal] = ACTIONS(1069), - [sym_hex_integer_literal] = ACTIONS(1069), - [sym_octal_integer_literal] = ACTIONS(1069), - [sym_binary_integer_literal] = ACTIONS(1067), - [sym_decimal_floating_point_literal] = ACTIONS(1067), - [sym_hex_floating_point_literal] = ACTIONS(1069), - [sym_true] = ACTIONS(1069), - [sym_false] = ACTIONS(1069), - [sym_character_literal] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1069), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(1067), - [sym_null_literal] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_final] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_class] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_case] = ACTIONS(1069), - [anon_sym_default] = ACTIONS(1069), - [anon_sym_SEMI] = ACTIONS(1067), - [anon_sym_assert] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_break] = ACTIONS(1069), - [anon_sym_continue] = ACTIONS(1069), - [anon_sym_return] = ACTIONS(1069), - [anon_sym_yield] = ACTIONS(1069), - [anon_sym_synchronized] = ACTIONS(1069), - [anon_sym_throw] = ACTIONS(1069), - [anon_sym_try] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_else] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1069), - [anon_sym_open] = ACTIONS(1069), - [anon_sym_module] = ACTIONS(1069), - [anon_sym_static] = ACTIONS(1069), - [anon_sym_with] = ACTIONS(1069), - [anon_sym_package] = ACTIONS(1069), - [anon_sym_import] = ACTIONS(1069), - [anon_sym_enum] = ACTIONS(1069), - [anon_sym_public] = ACTIONS(1069), - [anon_sym_protected] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1069), - [anon_sym_abstract] = ACTIONS(1069), - [anon_sym_strictfp] = ACTIONS(1069), - [anon_sym_native] = ACTIONS(1069), - [anon_sym_transient] = ACTIONS(1069), - [anon_sym_volatile] = ACTIONS(1069), - [anon_sym_sealed] = ACTIONS(1069), - [anon_sym_non_DASHsealed] = ACTIONS(1067), - [anon_sym_record] = ACTIONS(1069), - [anon_sym_ATinterface] = ACTIONS(1067), - [anon_sym_interface] = ACTIONS(1069), - [anon_sym_byte] = ACTIONS(1069), - [anon_sym_short] = ACTIONS(1069), - [anon_sym_int] = ACTIONS(1069), - [anon_sym_long] = ACTIONS(1069), - [anon_sym_char] = ACTIONS(1069), - [anon_sym_float] = ACTIONS(1069), - [anon_sym_double] = ACTIONS(1069), - [sym_boolean_type] = ACTIONS(1069), - [sym_void_type] = ACTIONS(1069), - [sym_this] = ACTIONS(1069), - [sym_super] = ACTIONS(1069), + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1072), + [sym_decimal_integer_literal] = ACTIONS(1072), + [sym_hex_integer_literal] = ACTIONS(1072), + [sym_octal_integer_literal] = ACTIONS(1072), + [sym_binary_integer_literal] = ACTIONS(1070), + [sym_decimal_floating_point_literal] = ACTIONS(1070), + [sym_hex_floating_point_literal] = ACTIONS(1072), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_character_literal] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1072), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [sym_null_literal] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(1070), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_final] = ACTIONS(1072), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1072), + [anon_sym_class] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_assert] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_yield] = ACTIONS(1072), + [anon_sym_synchronized] = ACTIONS(1072), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_else] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_AT] = ACTIONS(1072), + [anon_sym_open] = ACTIONS(1072), + [anon_sym_module] = ACTIONS(1072), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_with] = ACTIONS(1072), + [anon_sym_package] = ACTIONS(1072), + [anon_sym_import] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_public] = ACTIONS(1072), + [anon_sym_protected] = ACTIONS(1072), + [anon_sym_private] = ACTIONS(1072), + [anon_sym_abstract] = ACTIONS(1072), + [anon_sym_strictfp] = ACTIONS(1072), + [anon_sym_native] = ACTIONS(1072), + [anon_sym_transient] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_sealed] = ACTIONS(1072), + [anon_sym_non_DASHsealed] = ACTIONS(1070), + [anon_sym_record] = ACTIONS(1072), + [anon_sym_ATinterface] = ACTIONS(1070), + [anon_sym_interface] = ACTIONS(1072), + [anon_sym_byte] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [anon_sym_int] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_char] = ACTIONS(1072), + [anon_sym_float] = ACTIONS(1072), + [anon_sym_double] = ACTIONS(1072), + [sym_boolean_type] = ACTIONS(1072), + [sym_void_type] = ACTIONS(1072), + [sym_this] = ACTIONS(1072), + [sym_super] = ACTIONS(1072), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(586), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [sym_true] = ACTIONS(586), - [sym_false] = ACTIONS(586), - [sym_character_literal] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [sym_null_literal] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_PLUS_PLUS] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(584), - [anon_sym_new] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_case] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_synchronized] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_else] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(586), - [anon_sym_open] = ACTIONS(586), - [anon_sym_module] = ACTIONS(586), - [anon_sym_static] = ACTIONS(586), - [anon_sym_with] = ACTIONS(586), - [anon_sym_package] = ACTIONS(586), - [anon_sym_import] = ACTIONS(586), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_public] = ACTIONS(586), - [anon_sym_protected] = ACTIONS(586), - [anon_sym_private] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_strictfp] = ACTIONS(586), - [anon_sym_native] = ACTIONS(586), - [anon_sym_transient] = ACTIONS(586), - [anon_sym_volatile] = ACTIONS(586), - [anon_sym_sealed] = ACTIONS(586), - [anon_sym_non_DASHsealed] = ACTIONS(584), - [anon_sym_record] = ACTIONS(586), - [anon_sym_ATinterface] = ACTIONS(584), - [anon_sym_interface] = ACTIONS(586), - [anon_sym_byte] = ACTIONS(586), - [anon_sym_short] = ACTIONS(586), - [anon_sym_int] = ACTIONS(586), - [anon_sym_long] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_float] = ACTIONS(586), - [anon_sym_double] = ACTIONS(586), - [sym_boolean_type] = ACTIONS(586), - [sym_void_type] = ACTIONS(586), - [sym_this] = ACTIONS(586), - [sym_super] = ACTIONS(586), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1076), + [sym_decimal_integer_literal] = ACTIONS(1076), + [sym_hex_integer_literal] = ACTIONS(1076), + [sym_octal_integer_literal] = ACTIONS(1076), + [sym_binary_integer_literal] = ACTIONS(1074), + [sym_decimal_floating_point_literal] = ACTIONS(1074), + [sym_hex_floating_point_literal] = ACTIONS(1076), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_character_literal] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1076), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [sym_null_literal] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_final] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_assert] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_yield] = ACTIONS(1076), + [anon_sym_synchronized] = ACTIONS(1076), + [anon_sym_throw] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(1076), + [anon_sym_open] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_with] = ACTIONS(1076), + [anon_sym_package] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_public] = ACTIONS(1076), + [anon_sym_protected] = ACTIONS(1076), + [anon_sym_private] = ACTIONS(1076), + [anon_sym_abstract] = ACTIONS(1076), + [anon_sym_strictfp] = ACTIONS(1076), + [anon_sym_native] = ACTIONS(1076), + [anon_sym_transient] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_sealed] = ACTIONS(1076), + [anon_sym_non_DASHsealed] = ACTIONS(1074), + [anon_sym_record] = ACTIONS(1076), + [anon_sym_ATinterface] = ACTIONS(1074), + [anon_sym_interface] = ACTIONS(1076), + [anon_sym_byte] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [anon_sym_int] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_char] = ACTIONS(1076), + [anon_sym_float] = ACTIONS(1076), + [anon_sym_double] = ACTIONS(1076), + [sym_boolean_type] = ACTIONS(1076), + [sym_void_type] = ACTIONS(1076), + [sym_this] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1071), - [sym_identifier] = ACTIONS(1073), - [sym_decimal_integer_literal] = ACTIONS(1073), - [sym_hex_integer_literal] = ACTIONS(1073), - [sym_octal_integer_literal] = ACTIONS(1073), - [sym_binary_integer_literal] = ACTIONS(1071), - [sym_decimal_floating_point_literal] = ACTIONS(1071), - [sym_hex_floating_point_literal] = ACTIONS(1073), - [sym_true] = ACTIONS(1073), - [sym_false] = ACTIONS(1073), - [sym_character_literal] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1071), - [anon_sym_RBRACE] = ACTIONS(1071), - [sym_null_literal] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_final] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_new] = ACTIONS(1073), - [anon_sym_class] = ACTIONS(1073), - [anon_sym_switch] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_case] = ACTIONS(1073), - [anon_sym_default] = ACTIONS(1073), - [anon_sym_SEMI] = ACTIONS(1071), - [anon_sym_assert] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(1073), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1073), - [anon_sym_continue] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1073), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_synchronized] = ACTIONS(1073), - [anon_sym_throw] = ACTIONS(1073), - [anon_sym_try] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1073), - [anon_sym_else] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1073), - [anon_sym_AT] = ACTIONS(1073), - [anon_sym_open] = ACTIONS(1073), - [anon_sym_module] = ACTIONS(1073), - [anon_sym_static] = ACTIONS(1073), - [anon_sym_with] = ACTIONS(1073), - [anon_sym_package] = ACTIONS(1073), - [anon_sym_import] = ACTIONS(1073), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_public] = ACTIONS(1073), - [anon_sym_protected] = ACTIONS(1073), - [anon_sym_private] = ACTIONS(1073), - [anon_sym_abstract] = ACTIONS(1073), - [anon_sym_strictfp] = ACTIONS(1073), - [anon_sym_native] = ACTIONS(1073), - [anon_sym_transient] = ACTIONS(1073), - [anon_sym_volatile] = ACTIONS(1073), - [anon_sym_sealed] = ACTIONS(1073), - [anon_sym_non_DASHsealed] = ACTIONS(1071), - [anon_sym_record] = ACTIONS(1073), - [anon_sym_ATinterface] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1073), - [anon_sym_byte] = ACTIONS(1073), - [anon_sym_short] = ACTIONS(1073), - [anon_sym_int] = ACTIONS(1073), - [anon_sym_long] = ACTIONS(1073), - [anon_sym_char] = ACTIONS(1073), - [anon_sym_float] = ACTIONS(1073), - [anon_sym_double] = ACTIONS(1073), - [sym_boolean_type] = ACTIONS(1073), - [sym_void_type] = ACTIONS(1073), - [sym_this] = ACTIONS(1073), - [sym_super] = ACTIONS(1073), + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1080), + [sym_decimal_integer_literal] = ACTIONS(1080), + [sym_hex_integer_literal] = ACTIONS(1080), + [sym_octal_integer_literal] = ACTIONS(1080), + [sym_binary_integer_literal] = ACTIONS(1078), + [sym_decimal_floating_point_literal] = ACTIONS(1078), + [sym_hex_floating_point_literal] = ACTIONS(1080), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_character_literal] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [sym_null_literal] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_final] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1080), + [anon_sym_class] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_assert] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_synchronized] = ACTIONS(1080), + [anon_sym_throw] = ACTIONS(1080), + [anon_sym_try] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_else] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_AT] = ACTIONS(1080), + [anon_sym_open] = ACTIONS(1080), + [anon_sym_module] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_with] = ACTIONS(1080), + [anon_sym_package] = ACTIONS(1080), + [anon_sym_import] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_public] = ACTIONS(1080), + [anon_sym_protected] = ACTIONS(1080), + [anon_sym_private] = ACTIONS(1080), + [anon_sym_abstract] = ACTIONS(1080), + [anon_sym_strictfp] = ACTIONS(1080), + [anon_sym_native] = ACTIONS(1080), + [anon_sym_transient] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_sealed] = ACTIONS(1080), + [anon_sym_non_DASHsealed] = ACTIONS(1078), + [anon_sym_record] = ACTIONS(1080), + [anon_sym_ATinterface] = ACTIONS(1078), + [anon_sym_interface] = ACTIONS(1080), + [anon_sym_byte] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [anon_sym_int] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_float] = ACTIONS(1080), + [anon_sym_double] = ACTIONS(1080), + [sym_boolean_type] = ACTIONS(1080), + [sym_void_type] = ACTIONS(1080), + [sym_this] = ACTIONS(1080), + [sym_super] = ACTIONS(1080), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1077), - [sym_decimal_integer_literal] = ACTIONS(1077), - [sym_hex_integer_literal] = ACTIONS(1077), - [sym_octal_integer_literal] = ACTIONS(1077), - [sym_binary_integer_literal] = ACTIONS(1075), - [sym_decimal_floating_point_literal] = ACTIONS(1075), - [sym_hex_floating_point_literal] = ACTIONS(1077), - [sym_true] = ACTIONS(1077), - [sym_false] = ACTIONS(1077), - [sym_character_literal] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [sym_null_literal] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_final] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_new] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_case] = ACTIONS(1077), - [anon_sym_default] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym_assert] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(1077), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1077), - [anon_sym_continue] = ACTIONS(1077), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1077), - [anon_sym_synchronized] = ACTIONS(1077), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_else] = ACTIONS(1077), - [anon_sym_for] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1077), - [anon_sym_open] = ACTIONS(1077), - [anon_sym_module] = ACTIONS(1077), - [anon_sym_static] = ACTIONS(1077), - [anon_sym_with] = ACTIONS(1077), - [anon_sym_package] = ACTIONS(1077), - [anon_sym_import] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1077), - [anon_sym_public] = ACTIONS(1077), - [anon_sym_protected] = ACTIONS(1077), - [anon_sym_private] = ACTIONS(1077), - [anon_sym_abstract] = ACTIONS(1077), - [anon_sym_strictfp] = ACTIONS(1077), - [anon_sym_native] = ACTIONS(1077), - [anon_sym_transient] = ACTIONS(1077), - [anon_sym_volatile] = ACTIONS(1077), - [anon_sym_sealed] = ACTIONS(1077), - [anon_sym_non_DASHsealed] = ACTIONS(1075), - [anon_sym_record] = ACTIONS(1077), - [anon_sym_ATinterface] = ACTIONS(1075), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_byte] = ACTIONS(1077), - [anon_sym_short] = ACTIONS(1077), - [anon_sym_int] = ACTIONS(1077), - [anon_sym_long] = ACTIONS(1077), - [anon_sym_char] = ACTIONS(1077), - [anon_sym_float] = ACTIONS(1077), - [anon_sym_double] = ACTIONS(1077), - [sym_boolean_type] = ACTIONS(1077), - [sym_void_type] = ACTIONS(1077), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(1077), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1084), + [sym_decimal_integer_literal] = ACTIONS(1084), + [sym_hex_integer_literal] = ACTIONS(1084), + [sym_octal_integer_literal] = ACTIONS(1084), + [sym_binary_integer_literal] = ACTIONS(1082), + [sym_decimal_floating_point_literal] = ACTIONS(1082), + [sym_hex_floating_point_literal] = ACTIONS(1084), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_character_literal] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [sym_null_literal] = ACTIONS(1084), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_final] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_assert] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1084), + [anon_sym_synchronized] = ACTIONS(1084), + [anon_sym_throw] = ACTIONS(1084), + [anon_sym_try] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_else] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_AT] = ACTIONS(1084), + [anon_sym_open] = ACTIONS(1084), + [anon_sym_module] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_with] = ACTIONS(1084), + [anon_sym_package] = ACTIONS(1084), + [anon_sym_import] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1084), + [anon_sym_protected] = ACTIONS(1084), + [anon_sym_private] = ACTIONS(1084), + [anon_sym_abstract] = ACTIONS(1084), + [anon_sym_strictfp] = ACTIONS(1084), + [anon_sym_native] = ACTIONS(1084), + [anon_sym_transient] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_sealed] = ACTIONS(1084), + [anon_sym_non_DASHsealed] = ACTIONS(1082), + [anon_sym_record] = ACTIONS(1084), + [anon_sym_ATinterface] = ACTIONS(1082), + [anon_sym_interface] = ACTIONS(1084), + [anon_sym_byte] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [anon_sym_int] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_float] = ACTIONS(1084), + [anon_sym_double] = ACTIONS(1084), + [sym_boolean_type] = ACTIONS(1084), + [sym_void_type] = ACTIONS(1084), + [sym_this] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1079), - [sym_identifier] = ACTIONS(1081), - [sym_decimal_integer_literal] = ACTIONS(1081), - [sym_hex_integer_literal] = ACTIONS(1081), - [sym_octal_integer_literal] = ACTIONS(1081), - [sym_binary_integer_literal] = ACTIONS(1079), - [sym_decimal_floating_point_literal] = ACTIONS(1079), - [sym_hex_floating_point_literal] = ACTIONS(1081), - [sym_true] = ACTIONS(1081), - [sym_false] = ACTIONS(1081), - [sym_character_literal] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), - [sym_null_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_final] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_new] = ACTIONS(1081), - [anon_sym_class] = ACTIONS(1081), - [anon_sym_switch] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_case] = ACTIONS(1081), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1079), - [anon_sym_assert] = ACTIONS(1081), - [anon_sym_do] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_break] = ACTIONS(1081), - [anon_sym_continue] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(1081), - [anon_sym_synchronized] = ACTIONS(1081), - [anon_sym_throw] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_if] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1081), - [anon_sym_open] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_with] = ACTIONS(1081), - [anon_sym_package] = ACTIONS(1081), - [anon_sym_import] = ACTIONS(1081), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_abstract] = ACTIONS(1081), - [anon_sym_strictfp] = ACTIONS(1081), - [anon_sym_native] = ACTIONS(1081), - [anon_sym_transient] = ACTIONS(1081), - [anon_sym_volatile] = ACTIONS(1081), - [anon_sym_sealed] = ACTIONS(1081), - [anon_sym_non_DASHsealed] = ACTIONS(1079), - [anon_sym_record] = ACTIONS(1081), - [anon_sym_ATinterface] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1081), - [anon_sym_byte] = ACTIONS(1081), - [anon_sym_short] = ACTIONS(1081), - [anon_sym_int] = ACTIONS(1081), - [anon_sym_long] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_float] = ACTIONS(1081), - [anon_sym_double] = ACTIONS(1081), - [sym_boolean_type] = ACTIONS(1081), - [sym_void_type] = ACTIONS(1081), - [sym_this] = ACTIONS(1081), - [sym_super] = ACTIONS(1081), + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1088), + [sym_decimal_integer_literal] = ACTIONS(1088), + [sym_hex_integer_literal] = ACTIONS(1088), + [sym_octal_integer_literal] = ACTIONS(1088), + [sym_binary_integer_literal] = ACTIONS(1086), + [sym_decimal_floating_point_literal] = ACTIONS(1086), + [sym_hex_floating_point_literal] = ACTIONS(1088), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_character_literal] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [sym_null_literal] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_final] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_new] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_assert] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_yield] = ACTIONS(1088), + [anon_sym_synchronized] = ACTIONS(1088), + [anon_sym_throw] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_else] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1088), + [anon_sym_open] = ACTIONS(1088), + [anon_sym_module] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_with] = ACTIONS(1088), + [anon_sym_package] = ACTIONS(1088), + [anon_sym_import] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_public] = ACTIONS(1088), + [anon_sym_protected] = ACTIONS(1088), + [anon_sym_private] = ACTIONS(1088), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_strictfp] = ACTIONS(1088), + [anon_sym_native] = ACTIONS(1088), + [anon_sym_transient] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_sealed] = ACTIONS(1088), + [anon_sym_non_DASHsealed] = ACTIONS(1086), + [anon_sym_record] = ACTIONS(1088), + [anon_sym_ATinterface] = ACTIONS(1086), + [anon_sym_interface] = ACTIONS(1088), + [anon_sym_byte] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [anon_sym_int] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_char] = ACTIONS(1088), + [anon_sym_float] = ACTIONS(1088), + [anon_sym_double] = ACTIONS(1088), + [sym_boolean_type] = ACTIONS(1088), + [sym_void_type] = ACTIONS(1088), + [sym_this] = ACTIONS(1088), + [sym_super] = ACTIONS(1088), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1085), - [sym_decimal_integer_literal] = ACTIONS(1085), - [sym_hex_integer_literal] = ACTIONS(1085), - [sym_octal_integer_literal] = ACTIONS(1085), - [sym_binary_integer_literal] = ACTIONS(1083), - [sym_decimal_floating_point_literal] = ACTIONS(1083), - [sym_hex_floating_point_literal] = ACTIONS(1085), - [sym_true] = ACTIONS(1085), - [sym_false] = ACTIONS(1085), - [sym_character_literal] = ACTIONS(1083), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1083), - [sym_null_literal] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_final] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_class] = ACTIONS(1085), - [anon_sym_switch] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1085), - [anon_sym_default] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1083), - [anon_sym_assert] = ACTIONS(1085), - [anon_sym_do] = ACTIONS(1085), - [anon_sym_while] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1085), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_yield] = ACTIONS(1085), - [anon_sym_synchronized] = ACTIONS(1085), - [anon_sym_throw] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1085), - [anon_sym_else] = ACTIONS(1085), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_open] = ACTIONS(1085), - [anon_sym_module] = ACTIONS(1085), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_with] = ACTIONS(1085), - [anon_sym_package] = ACTIONS(1085), - [anon_sym_import] = ACTIONS(1085), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_public] = ACTIONS(1085), - [anon_sym_protected] = ACTIONS(1085), - [anon_sym_private] = ACTIONS(1085), - [anon_sym_abstract] = ACTIONS(1085), - [anon_sym_strictfp] = ACTIONS(1085), - [anon_sym_native] = ACTIONS(1085), - [anon_sym_transient] = ACTIONS(1085), - [anon_sym_volatile] = ACTIONS(1085), - [anon_sym_sealed] = ACTIONS(1085), - [anon_sym_non_DASHsealed] = ACTIONS(1083), - [anon_sym_record] = ACTIONS(1085), - [anon_sym_ATinterface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1085), - [anon_sym_byte] = ACTIONS(1085), - [anon_sym_short] = ACTIONS(1085), - [anon_sym_int] = ACTIONS(1085), - [anon_sym_long] = ACTIONS(1085), - [anon_sym_char] = ACTIONS(1085), - [anon_sym_float] = ACTIONS(1085), - [anon_sym_double] = ACTIONS(1085), - [sym_boolean_type] = ACTIONS(1085), - [sym_void_type] = ACTIONS(1085), - [sym_this] = ACTIONS(1085), - [sym_super] = ACTIONS(1085), + [ts_builtin_sym_end] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1092), + [sym_decimal_integer_literal] = ACTIONS(1092), + [sym_hex_integer_literal] = ACTIONS(1092), + [sym_octal_integer_literal] = ACTIONS(1092), + [sym_binary_integer_literal] = ACTIONS(1090), + [sym_decimal_floating_point_literal] = ACTIONS(1090), + [sym_hex_floating_point_literal] = ACTIONS(1092), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_character_literal] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1092), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [sym_null_literal] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_final] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1092), + [anon_sym_class] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_assert] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_yield] = ACTIONS(1092), + [anon_sym_synchronized] = ACTIONS(1092), + [anon_sym_throw] = ACTIONS(1092), + [anon_sym_try] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_else] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_AT] = ACTIONS(1092), + [anon_sym_open] = ACTIONS(1092), + [anon_sym_module] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_with] = ACTIONS(1092), + [anon_sym_package] = ACTIONS(1092), + [anon_sym_import] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_public] = ACTIONS(1092), + [anon_sym_protected] = ACTIONS(1092), + [anon_sym_private] = ACTIONS(1092), + [anon_sym_abstract] = ACTIONS(1092), + [anon_sym_strictfp] = ACTIONS(1092), + [anon_sym_native] = ACTIONS(1092), + [anon_sym_transient] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_sealed] = ACTIONS(1092), + [anon_sym_non_DASHsealed] = ACTIONS(1090), + [anon_sym_record] = ACTIONS(1092), + [anon_sym_ATinterface] = ACTIONS(1090), + [anon_sym_interface] = ACTIONS(1092), + [anon_sym_byte] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [anon_sym_int] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_char] = ACTIONS(1092), + [anon_sym_float] = ACTIONS(1092), + [anon_sym_double] = ACTIONS(1092), + [sym_boolean_type] = ACTIONS(1092), + [sym_void_type] = ACTIONS(1092), + [sym_this] = ACTIONS(1092), + [sym_super] = ACTIONS(1092), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1089), - [sym_decimal_integer_literal] = ACTIONS(1089), - [sym_hex_integer_literal] = ACTIONS(1089), - [sym_octal_integer_literal] = ACTIONS(1089), - [sym_binary_integer_literal] = ACTIONS(1087), - [sym_decimal_floating_point_literal] = ACTIONS(1087), - [sym_hex_floating_point_literal] = ACTIONS(1089), - [sym_true] = ACTIONS(1089), - [sym_false] = ACTIONS(1089), - [sym_character_literal] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1087), - [sym_null_literal] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_final] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1087), - [anon_sym_new] = ACTIONS(1089), - [anon_sym_class] = ACTIONS(1089), - [anon_sym_switch] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_case] = ACTIONS(1089), - [anon_sym_default] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1087), - [anon_sym_assert] = ACTIONS(1089), - [anon_sym_do] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1089), - [anon_sym_break] = ACTIONS(1089), - [anon_sym_continue] = ACTIONS(1089), - [anon_sym_return] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1089), - [anon_sym_synchronized] = ACTIONS(1089), - [anon_sym_throw] = ACTIONS(1089), - [anon_sym_try] = ACTIONS(1089), - [anon_sym_if] = ACTIONS(1089), - [anon_sym_else] = ACTIONS(1089), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1089), - [anon_sym_open] = ACTIONS(1089), - [anon_sym_module] = ACTIONS(1089), - [anon_sym_static] = ACTIONS(1089), - [anon_sym_with] = ACTIONS(1089), - [anon_sym_package] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(1089), - [anon_sym_enum] = ACTIONS(1089), - [anon_sym_public] = ACTIONS(1089), - [anon_sym_protected] = ACTIONS(1089), - [anon_sym_private] = ACTIONS(1089), - [anon_sym_abstract] = ACTIONS(1089), - [anon_sym_strictfp] = ACTIONS(1089), - [anon_sym_native] = ACTIONS(1089), - [anon_sym_transient] = ACTIONS(1089), - [anon_sym_volatile] = ACTIONS(1089), - [anon_sym_sealed] = ACTIONS(1089), - [anon_sym_non_DASHsealed] = ACTIONS(1087), - [anon_sym_record] = ACTIONS(1089), - [anon_sym_ATinterface] = ACTIONS(1087), - [anon_sym_interface] = ACTIONS(1089), - [anon_sym_byte] = ACTIONS(1089), - [anon_sym_short] = ACTIONS(1089), - [anon_sym_int] = ACTIONS(1089), - [anon_sym_long] = ACTIONS(1089), - [anon_sym_char] = ACTIONS(1089), - [anon_sym_float] = ACTIONS(1089), - [anon_sym_double] = ACTIONS(1089), - [sym_boolean_type] = ACTIONS(1089), - [sym_void_type] = ACTIONS(1089), - [sym_this] = ACTIONS(1089), - [sym_super] = ACTIONS(1089), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1096), + [sym_decimal_integer_literal] = ACTIONS(1096), + [sym_hex_integer_literal] = ACTIONS(1096), + [sym_octal_integer_literal] = ACTIONS(1096), + [sym_binary_integer_literal] = ACTIONS(1094), + [sym_decimal_floating_point_literal] = ACTIONS(1094), + [sym_hex_floating_point_literal] = ACTIONS(1096), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_character_literal] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1096), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [sym_null_literal] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_final] = ACTIONS(1096), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_new] = ACTIONS(1096), + [anon_sym_class] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_assert] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_yield] = ACTIONS(1096), + [anon_sym_synchronized] = ACTIONS(1096), + [anon_sym_throw] = ACTIONS(1096), + [anon_sym_try] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_else] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_AT] = ACTIONS(1096), + [anon_sym_open] = ACTIONS(1096), + [anon_sym_module] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_with] = ACTIONS(1096), + [anon_sym_package] = ACTIONS(1096), + [anon_sym_import] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_public] = ACTIONS(1096), + [anon_sym_protected] = ACTIONS(1096), + [anon_sym_private] = ACTIONS(1096), + [anon_sym_abstract] = ACTIONS(1096), + [anon_sym_strictfp] = ACTIONS(1096), + [anon_sym_native] = ACTIONS(1096), + [anon_sym_transient] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_sealed] = ACTIONS(1096), + [anon_sym_non_DASHsealed] = ACTIONS(1094), + [anon_sym_record] = ACTIONS(1096), + [anon_sym_ATinterface] = ACTIONS(1094), + [anon_sym_interface] = ACTIONS(1096), + [anon_sym_byte] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [anon_sym_int] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_char] = ACTIONS(1096), + [anon_sym_float] = ACTIONS(1096), + [anon_sym_double] = ACTIONS(1096), + [sym_boolean_type] = ACTIONS(1096), + [sym_void_type] = ACTIONS(1096), + [sym_this] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_identifier] = ACTIONS(1093), - [sym_decimal_integer_literal] = ACTIONS(1093), - [sym_hex_integer_literal] = ACTIONS(1093), - [sym_octal_integer_literal] = ACTIONS(1093), - [sym_binary_integer_literal] = ACTIONS(1091), - [sym_decimal_floating_point_literal] = ACTIONS(1091), - [sym_hex_floating_point_literal] = ACTIONS(1093), - [sym_true] = ACTIONS(1093), - [sym_false] = ACTIONS(1093), - [sym_character_literal] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1091), - [anon_sym_RBRACE] = ACTIONS(1091), - [sym_null_literal] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_final] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_class] = ACTIONS(1093), - [anon_sym_switch] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_case] = ACTIONS(1093), - [anon_sym_default] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_assert] = ACTIONS(1093), - [anon_sym_do] = ACTIONS(1093), - [anon_sym_while] = ACTIONS(1093), - [anon_sym_break] = ACTIONS(1093), - [anon_sym_continue] = ACTIONS(1093), - [anon_sym_return] = ACTIONS(1093), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_synchronized] = ACTIONS(1093), - [anon_sym_throw] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(1093), - [anon_sym_if] = ACTIONS(1093), - [anon_sym_else] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1093), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_open] = ACTIONS(1093), - [anon_sym_module] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1093), - [anon_sym_with] = ACTIONS(1093), - [anon_sym_package] = ACTIONS(1093), - [anon_sym_import] = ACTIONS(1093), - [anon_sym_enum] = ACTIONS(1093), - [anon_sym_public] = ACTIONS(1093), - [anon_sym_protected] = ACTIONS(1093), - [anon_sym_private] = ACTIONS(1093), - [anon_sym_abstract] = ACTIONS(1093), - [anon_sym_strictfp] = ACTIONS(1093), - [anon_sym_native] = ACTIONS(1093), - [anon_sym_transient] = ACTIONS(1093), - [anon_sym_volatile] = ACTIONS(1093), - [anon_sym_sealed] = ACTIONS(1093), - [anon_sym_non_DASHsealed] = ACTIONS(1091), - [anon_sym_record] = ACTIONS(1093), - [anon_sym_ATinterface] = ACTIONS(1091), - [anon_sym_interface] = ACTIONS(1093), - [anon_sym_byte] = ACTIONS(1093), - [anon_sym_short] = ACTIONS(1093), - [anon_sym_int] = ACTIONS(1093), - [anon_sym_long] = ACTIONS(1093), - [anon_sym_char] = ACTIONS(1093), - [anon_sym_float] = ACTIONS(1093), - [anon_sym_double] = ACTIONS(1093), - [sym_boolean_type] = ACTIONS(1093), - [sym_void_type] = ACTIONS(1093), - [sym_this] = ACTIONS(1093), - [sym_super] = ACTIONS(1093), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [sym_decimal_integer_literal] = ACTIONS(1100), + [sym_hex_integer_literal] = ACTIONS(1100), + [sym_octal_integer_literal] = ACTIONS(1100), + [sym_binary_integer_literal] = ACTIONS(1098), + [sym_decimal_floating_point_literal] = ACTIONS(1098), + [sym_hex_floating_point_literal] = ACTIONS(1100), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_character_literal] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1100), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [sym_null_literal] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1098), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_final] = ACTIONS(1100), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_new] = ACTIONS(1100), + [anon_sym_class] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_synchronized] = ACTIONS(1100), + [anon_sym_throw] = ACTIONS(1100), + [anon_sym_try] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_else] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_AT] = ACTIONS(1100), + [anon_sym_open] = ACTIONS(1100), + [anon_sym_module] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_with] = ACTIONS(1100), + [anon_sym_package] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_public] = ACTIONS(1100), + [anon_sym_protected] = ACTIONS(1100), + [anon_sym_private] = ACTIONS(1100), + [anon_sym_abstract] = ACTIONS(1100), + [anon_sym_strictfp] = ACTIONS(1100), + [anon_sym_native] = ACTIONS(1100), + [anon_sym_transient] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_sealed] = ACTIONS(1100), + [anon_sym_non_DASHsealed] = ACTIONS(1098), + [anon_sym_record] = ACTIONS(1100), + [anon_sym_ATinterface] = ACTIONS(1098), + [anon_sym_interface] = ACTIONS(1100), + [anon_sym_byte] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [anon_sym_int] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_char] = ACTIONS(1100), + [anon_sym_float] = ACTIONS(1100), + [anon_sym_double] = ACTIONS(1100), + [sym_boolean_type] = ACTIONS(1100), + [sym_void_type] = ACTIONS(1100), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(1100), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_identifier] = ACTIONS(1097), - [sym_decimal_integer_literal] = ACTIONS(1097), - [sym_hex_integer_literal] = ACTIONS(1097), - [sym_octal_integer_literal] = ACTIONS(1097), - [sym_binary_integer_literal] = ACTIONS(1095), - [sym_decimal_floating_point_literal] = ACTIONS(1095), - [sym_hex_floating_point_literal] = ACTIONS(1097), - [sym_true] = ACTIONS(1097), - [sym_false] = ACTIONS(1097), - [sym_character_literal] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), - [sym_null_literal] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_final] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_new] = ACTIONS(1097), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_switch] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_case] = ACTIONS(1097), - [anon_sym_default] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1097), - [anon_sym_continue] = ACTIONS(1097), - [anon_sym_return] = ACTIONS(1097), - [anon_sym_yield] = ACTIONS(1097), - [anon_sym_synchronized] = ACTIONS(1097), - [anon_sym_throw] = ACTIONS(1097), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_else] = ACTIONS(1097), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_AT] = ACTIONS(1097), - [anon_sym_open] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_with] = ACTIONS(1097), - [anon_sym_package] = ACTIONS(1097), - [anon_sym_import] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_abstract] = ACTIONS(1097), - [anon_sym_strictfp] = ACTIONS(1097), - [anon_sym_native] = ACTIONS(1097), - [anon_sym_transient] = ACTIONS(1097), - [anon_sym_volatile] = ACTIONS(1097), - [anon_sym_sealed] = ACTIONS(1097), - [anon_sym_non_DASHsealed] = ACTIONS(1095), - [anon_sym_record] = ACTIONS(1097), - [anon_sym_ATinterface] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_byte] = ACTIONS(1097), - [anon_sym_short] = ACTIONS(1097), - [anon_sym_int] = ACTIONS(1097), - [anon_sym_long] = ACTIONS(1097), - [anon_sym_char] = ACTIONS(1097), - [anon_sym_float] = ACTIONS(1097), - [anon_sym_double] = ACTIONS(1097), - [sym_boolean_type] = ACTIONS(1097), - [sym_void_type] = ACTIONS(1097), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(1097), + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [sym_decimal_integer_literal] = ACTIONS(1104), + [sym_hex_integer_literal] = ACTIONS(1104), + [sym_octal_integer_literal] = ACTIONS(1104), + [sym_binary_integer_literal] = ACTIONS(1102), + [sym_decimal_floating_point_literal] = ACTIONS(1102), + [sym_hex_floating_point_literal] = ACTIONS(1104), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_character_literal] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1104), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [sym_null_literal] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_final] = ACTIONS(1104), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_new] = ACTIONS(1104), + [anon_sym_class] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_assert] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_yield] = ACTIONS(1104), + [anon_sym_synchronized] = ACTIONS(1104), + [anon_sym_throw] = ACTIONS(1104), + [anon_sym_try] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(1104), + [anon_sym_open] = ACTIONS(1104), + [anon_sym_module] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_with] = ACTIONS(1104), + [anon_sym_package] = ACTIONS(1104), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_public] = ACTIONS(1104), + [anon_sym_protected] = ACTIONS(1104), + [anon_sym_private] = ACTIONS(1104), + [anon_sym_abstract] = ACTIONS(1104), + [anon_sym_strictfp] = ACTIONS(1104), + [anon_sym_native] = ACTIONS(1104), + [anon_sym_transient] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_sealed] = ACTIONS(1104), + [anon_sym_non_DASHsealed] = ACTIONS(1102), + [anon_sym_record] = ACTIONS(1104), + [anon_sym_ATinterface] = ACTIONS(1102), + [anon_sym_interface] = ACTIONS(1104), + [anon_sym_byte] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [anon_sym_int] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_char] = ACTIONS(1104), + [anon_sym_float] = ACTIONS(1104), + [anon_sym_double] = ACTIONS(1104), + [sym_boolean_type] = ACTIONS(1104), + [sym_void_type] = ACTIONS(1104), + [sym_this] = ACTIONS(1104), + [sym_super] = ACTIONS(1104), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1099), - [sym_identifier] = ACTIONS(1101), - [sym_decimal_integer_literal] = ACTIONS(1101), - [sym_hex_integer_literal] = ACTIONS(1101), - [sym_octal_integer_literal] = ACTIONS(1101), - [sym_binary_integer_literal] = ACTIONS(1099), - [sym_decimal_floating_point_literal] = ACTIONS(1099), - [sym_hex_floating_point_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(1101), - [sym_false] = ACTIONS(1101), - [sym_character_literal] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1099), - [sym_null_literal] = ACTIONS(1101), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_final] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_class] = ACTIONS(1101), - [anon_sym_switch] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_case] = ACTIONS(1101), - [anon_sym_default] = ACTIONS(1101), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(1101), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_break] = ACTIONS(1101), - [anon_sym_continue] = ACTIONS(1101), - [anon_sym_return] = ACTIONS(1101), - [anon_sym_yield] = ACTIONS(1101), - [anon_sym_synchronized] = ACTIONS(1101), - [anon_sym_throw] = ACTIONS(1101), - [anon_sym_try] = ACTIONS(1101), - [anon_sym_if] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1101), - [anon_sym_for] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1101), - [anon_sym_open] = ACTIONS(1101), - [anon_sym_module] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_with] = ACTIONS(1101), - [anon_sym_package] = ACTIONS(1101), - [anon_sym_import] = ACTIONS(1101), - [anon_sym_enum] = ACTIONS(1101), - [anon_sym_public] = ACTIONS(1101), - [anon_sym_protected] = ACTIONS(1101), - [anon_sym_private] = ACTIONS(1101), - [anon_sym_abstract] = ACTIONS(1101), - [anon_sym_strictfp] = ACTIONS(1101), - [anon_sym_native] = ACTIONS(1101), - [anon_sym_transient] = ACTIONS(1101), - [anon_sym_volatile] = ACTIONS(1101), - [anon_sym_sealed] = ACTIONS(1101), - [anon_sym_non_DASHsealed] = ACTIONS(1099), - [anon_sym_record] = ACTIONS(1101), - [anon_sym_ATinterface] = ACTIONS(1099), - [anon_sym_interface] = ACTIONS(1101), - [anon_sym_byte] = ACTIONS(1101), - [anon_sym_short] = ACTIONS(1101), - [anon_sym_int] = ACTIONS(1101), - [anon_sym_long] = ACTIONS(1101), - [anon_sym_char] = ACTIONS(1101), - [anon_sym_float] = ACTIONS(1101), - [anon_sym_double] = ACTIONS(1101), - [sym_boolean_type] = ACTIONS(1101), - [sym_void_type] = ACTIONS(1101), - [sym_this] = ACTIONS(1101), - [sym_super] = ACTIONS(1101), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [sym_decimal_integer_literal] = ACTIONS(1108), + [sym_hex_integer_literal] = ACTIONS(1108), + [sym_octal_integer_literal] = ACTIONS(1108), + [sym_binary_integer_literal] = ACTIONS(1106), + [sym_decimal_floating_point_literal] = ACTIONS(1106), + [sym_hex_floating_point_literal] = ACTIONS(1108), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_character_literal] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1108), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [sym_null_literal] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_final] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_new] = ACTIONS(1108), + [anon_sym_class] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_assert] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_synchronized] = ACTIONS(1108), + [anon_sym_throw] = ACTIONS(1108), + [anon_sym_try] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_else] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1108), + [anon_sym_open] = ACTIONS(1108), + [anon_sym_module] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_package] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_public] = ACTIONS(1108), + [anon_sym_protected] = ACTIONS(1108), + [anon_sym_private] = ACTIONS(1108), + [anon_sym_abstract] = ACTIONS(1108), + [anon_sym_strictfp] = ACTIONS(1108), + [anon_sym_native] = ACTIONS(1108), + [anon_sym_transient] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_sealed] = ACTIONS(1108), + [anon_sym_non_DASHsealed] = ACTIONS(1106), + [anon_sym_record] = ACTIONS(1108), + [anon_sym_ATinterface] = ACTIONS(1106), + [anon_sym_interface] = ACTIONS(1108), + [anon_sym_byte] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [anon_sym_int] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_char] = ACTIONS(1108), + [anon_sym_float] = ACTIONS(1108), + [anon_sym_double] = ACTIONS(1108), + [sym_boolean_type] = ACTIONS(1108), + [sym_void_type] = ACTIONS(1108), + [sym_this] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1103), - [sym_identifier] = ACTIONS(1105), - [sym_decimal_integer_literal] = ACTIONS(1105), - [sym_hex_integer_literal] = ACTIONS(1105), - [sym_octal_integer_literal] = ACTIONS(1105), - [sym_binary_integer_literal] = ACTIONS(1103), - [sym_decimal_floating_point_literal] = ACTIONS(1103), - [sym_hex_floating_point_literal] = ACTIONS(1105), - [sym_true] = ACTIONS(1105), - [sym_false] = ACTIONS(1105), - [sym_character_literal] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [sym_null_literal] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_final] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_new] = ACTIONS(1105), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_switch] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_case] = ACTIONS(1105), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_assert] = ACTIONS(1105), - [anon_sym_do] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(1105), - [anon_sym_synchronized] = ACTIONS(1105), - [anon_sym_throw] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_open] = ACTIONS(1105), - [anon_sym_module] = ACTIONS(1105), - [anon_sym_static] = ACTIONS(1105), - [anon_sym_with] = ACTIONS(1105), - [anon_sym_package] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_public] = ACTIONS(1105), - [anon_sym_protected] = ACTIONS(1105), - [anon_sym_private] = ACTIONS(1105), - [anon_sym_abstract] = ACTIONS(1105), - [anon_sym_strictfp] = ACTIONS(1105), - [anon_sym_native] = ACTIONS(1105), - [anon_sym_transient] = ACTIONS(1105), - [anon_sym_volatile] = ACTIONS(1105), - [anon_sym_sealed] = ACTIONS(1105), - [anon_sym_non_DASHsealed] = ACTIONS(1103), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_ATinterface] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_byte] = ACTIONS(1105), - [anon_sym_short] = ACTIONS(1105), - [anon_sym_int] = ACTIONS(1105), - [anon_sym_long] = ACTIONS(1105), - [anon_sym_char] = ACTIONS(1105), - [anon_sym_float] = ACTIONS(1105), - [anon_sym_double] = ACTIONS(1105), - [sym_boolean_type] = ACTIONS(1105), - [sym_void_type] = ACTIONS(1105), - [sym_this] = ACTIONS(1105), - [sym_super] = ACTIONS(1105), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [sym_decimal_integer_literal] = ACTIONS(1112), + [sym_hex_integer_literal] = ACTIONS(1112), + [sym_octal_integer_literal] = ACTIONS(1112), + [sym_binary_integer_literal] = ACTIONS(1110), + [sym_decimal_floating_point_literal] = ACTIONS(1110), + [sym_hex_floating_point_literal] = ACTIONS(1112), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_character_literal] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [sym_null_literal] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_final] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_new] = ACTIONS(1112), + [anon_sym_class] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_assert] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_yield] = ACTIONS(1112), + [anon_sym_synchronized] = ACTIONS(1112), + [anon_sym_throw] = ACTIONS(1112), + [anon_sym_try] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_else] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_open] = ACTIONS(1112), + [anon_sym_module] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_with] = ACTIONS(1112), + [anon_sym_package] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_public] = ACTIONS(1112), + [anon_sym_protected] = ACTIONS(1112), + [anon_sym_private] = ACTIONS(1112), + [anon_sym_abstract] = ACTIONS(1112), + [anon_sym_strictfp] = ACTIONS(1112), + [anon_sym_native] = ACTIONS(1112), + [anon_sym_transient] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_sealed] = ACTIONS(1112), + [anon_sym_non_DASHsealed] = ACTIONS(1110), + [anon_sym_record] = ACTIONS(1112), + [anon_sym_ATinterface] = ACTIONS(1110), + [anon_sym_interface] = ACTIONS(1112), + [anon_sym_byte] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [anon_sym_int] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_char] = ACTIONS(1112), + [anon_sym_float] = ACTIONS(1112), + [anon_sym_double] = ACTIONS(1112), + [sym_boolean_type] = ACTIONS(1112), + [sym_void_type] = ACTIONS(1112), + [sym_this] = ACTIONS(1112), + [sym_super] = ACTIONS(1112), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1109), - [sym_decimal_integer_literal] = ACTIONS(1109), - [sym_hex_integer_literal] = ACTIONS(1109), - [sym_octal_integer_literal] = ACTIONS(1109), - [sym_binary_integer_literal] = ACTIONS(1107), - [sym_decimal_floating_point_literal] = ACTIONS(1107), - [sym_hex_floating_point_literal] = ACTIONS(1109), - [sym_true] = ACTIONS(1109), - [sym_false] = ACTIONS(1109), - [sym_character_literal] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [sym_null_literal] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_final] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_class] = ACTIONS(1109), - [anon_sym_switch] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_case] = ACTIONS(1109), - [anon_sym_default] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(1109), - [anon_sym_synchronized] = ACTIONS(1109), - [anon_sym_throw] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1109), - [anon_sym_open] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_with] = ACTIONS(1109), - [anon_sym_package] = ACTIONS(1109), - [anon_sym_import] = ACTIONS(1109), - [anon_sym_enum] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_abstract] = ACTIONS(1109), - [anon_sym_strictfp] = ACTIONS(1109), - [anon_sym_native] = ACTIONS(1109), - [anon_sym_transient] = ACTIONS(1109), - [anon_sym_volatile] = ACTIONS(1109), - [anon_sym_sealed] = ACTIONS(1109), - [anon_sym_non_DASHsealed] = ACTIONS(1107), - [anon_sym_record] = ACTIONS(1109), - [anon_sym_ATinterface] = ACTIONS(1107), - [anon_sym_interface] = ACTIONS(1109), - [anon_sym_byte] = ACTIONS(1109), - [anon_sym_short] = ACTIONS(1109), - [anon_sym_int] = ACTIONS(1109), - [anon_sym_long] = ACTIONS(1109), - [anon_sym_char] = ACTIONS(1109), - [anon_sym_float] = ACTIONS(1109), - [anon_sym_double] = ACTIONS(1109), - [sym_boolean_type] = ACTIONS(1109), - [sym_void_type] = ACTIONS(1109), - [sym_this] = ACTIONS(1109), - [sym_super] = ACTIONS(1109), + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1116), + [sym_decimal_integer_literal] = ACTIONS(1116), + [sym_hex_integer_literal] = ACTIONS(1116), + [sym_octal_integer_literal] = ACTIONS(1116), + [sym_binary_integer_literal] = ACTIONS(1114), + [sym_decimal_floating_point_literal] = ACTIONS(1114), + [sym_hex_floating_point_literal] = ACTIONS(1116), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_character_literal] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1116), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [sym_null_literal] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1114), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_final] = ACTIONS(1116), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_new] = ACTIONS(1116), + [anon_sym_class] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_assert] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_yield] = ACTIONS(1116), + [anon_sym_synchronized] = ACTIONS(1116), + [anon_sym_throw] = ACTIONS(1116), + [anon_sym_try] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_AT] = ACTIONS(1116), + [anon_sym_open] = ACTIONS(1116), + [anon_sym_module] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_with] = ACTIONS(1116), + [anon_sym_package] = ACTIONS(1116), + [anon_sym_import] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_public] = ACTIONS(1116), + [anon_sym_protected] = ACTIONS(1116), + [anon_sym_private] = ACTIONS(1116), + [anon_sym_abstract] = ACTIONS(1116), + [anon_sym_strictfp] = ACTIONS(1116), + [anon_sym_native] = ACTIONS(1116), + [anon_sym_transient] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_sealed] = ACTIONS(1116), + [anon_sym_non_DASHsealed] = ACTIONS(1114), + [anon_sym_record] = ACTIONS(1116), + [anon_sym_ATinterface] = ACTIONS(1114), + [anon_sym_interface] = ACTIONS(1116), + [anon_sym_byte] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [anon_sym_int] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_char] = ACTIONS(1116), + [anon_sym_float] = ACTIONS(1116), + [anon_sym_double] = ACTIONS(1116), + [sym_boolean_type] = ACTIONS(1116), + [sym_void_type] = ACTIONS(1116), + [sym_this] = ACTIONS(1116), + [sym_super] = ACTIONS(1116), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [sym_decimal_integer_literal] = ACTIONS(1113), - [sym_hex_integer_literal] = ACTIONS(1113), - [sym_octal_integer_literal] = ACTIONS(1113), - [sym_binary_integer_literal] = ACTIONS(1111), - [sym_decimal_floating_point_literal] = ACTIONS(1111), - [sym_hex_floating_point_literal] = ACTIONS(1113), - [sym_true] = ACTIONS(1113), - [sym_false] = ACTIONS(1113), - [sym_character_literal] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1113), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [sym_null_literal] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_final] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_class] = ACTIONS(1113), - [anon_sym_switch] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_case] = ACTIONS(1113), - [anon_sym_default] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_assert] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_synchronized] = ACTIONS(1113), - [anon_sym_throw] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1113), - [anon_sym_open] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_static] = ACTIONS(1113), - [anon_sym_with] = ACTIONS(1113), - [anon_sym_package] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_enum] = ACTIONS(1113), - [anon_sym_public] = ACTIONS(1113), - [anon_sym_protected] = ACTIONS(1113), - [anon_sym_private] = ACTIONS(1113), - [anon_sym_abstract] = ACTIONS(1113), - [anon_sym_strictfp] = ACTIONS(1113), - [anon_sym_native] = ACTIONS(1113), - [anon_sym_transient] = ACTIONS(1113), - [anon_sym_volatile] = ACTIONS(1113), - [anon_sym_sealed] = ACTIONS(1113), - [anon_sym_non_DASHsealed] = ACTIONS(1111), - [anon_sym_record] = ACTIONS(1113), - [anon_sym_ATinterface] = ACTIONS(1111), - [anon_sym_interface] = ACTIONS(1113), - [anon_sym_byte] = ACTIONS(1113), - [anon_sym_short] = ACTIONS(1113), - [anon_sym_int] = ACTIONS(1113), - [anon_sym_long] = ACTIONS(1113), - [anon_sym_char] = ACTIONS(1113), - [anon_sym_float] = ACTIONS(1113), - [anon_sym_double] = ACTIONS(1113), - [sym_boolean_type] = ACTIONS(1113), - [sym_void_type] = ACTIONS(1113), - [sym_this] = ACTIONS(1113), - [sym_super] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1120), + [sym_decimal_integer_literal] = ACTIONS(1120), + [sym_hex_integer_literal] = ACTIONS(1120), + [sym_octal_integer_literal] = ACTIONS(1120), + [sym_binary_integer_literal] = ACTIONS(1118), + [sym_decimal_floating_point_literal] = ACTIONS(1118), + [sym_hex_floating_point_literal] = ACTIONS(1120), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_character_literal] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [sym_null_literal] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1118), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_final] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_new] = ACTIONS(1120), + [anon_sym_class] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_assert] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_synchronized] = ACTIONS(1120), + [anon_sym_throw] = ACTIONS(1120), + [anon_sym_try] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_else] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_open] = ACTIONS(1120), + [anon_sym_module] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_with] = ACTIONS(1120), + [anon_sym_package] = ACTIONS(1120), + [anon_sym_import] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_public] = ACTIONS(1120), + [anon_sym_protected] = ACTIONS(1120), + [anon_sym_private] = ACTIONS(1120), + [anon_sym_abstract] = ACTIONS(1120), + [anon_sym_strictfp] = ACTIONS(1120), + [anon_sym_native] = ACTIONS(1120), + [anon_sym_transient] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_sealed] = ACTIONS(1120), + [anon_sym_non_DASHsealed] = ACTIONS(1118), + [anon_sym_record] = ACTIONS(1120), + [anon_sym_ATinterface] = ACTIONS(1118), + [anon_sym_interface] = ACTIONS(1120), + [anon_sym_byte] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [anon_sym_int] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_char] = ACTIONS(1120), + [anon_sym_float] = ACTIONS(1120), + [anon_sym_double] = ACTIONS(1120), + [sym_boolean_type] = ACTIONS(1120), + [sym_void_type] = ACTIONS(1120), + [sym_this] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_decimal_integer_literal] = ACTIONS(1117), - [sym_hex_integer_literal] = ACTIONS(1117), - [sym_octal_integer_literal] = ACTIONS(1117), - [sym_binary_integer_literal] = ACTIONS(1115), - [sym_decimal_floating_point_literal] = ACTIONS(1115), - [sym_hex_floating_point_literal] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_character_literal] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1117), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [sym_null_literal] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_final] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1115), - [anon_sym_TILDE] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [anon_sym_new] = ACTIONS(1117), - [anon_sym_class] = ACTIONS(1117), - [anon_sym_switch] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_case] = ACTIONS(1117), - [anon_sym_default] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(1117), - [anon_sym_synchronized] = ACTIONS(1117), - [anon_sym_throw] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(1117), - [anon_sym_open] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_static] = ACTIONS(1117), - [anon_sym_with] = ACTIONS(1117), - [anon_sym_package] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(1117), - [anon_sym_enum] = ACTIONS(1117), - [anon_sym_public] = ACTIONS(1117), - [anon_sym_protected] = ACTIONS(1117), - [anon_sym_private] = ACTIONS(1117), - [anon_sym_abstract] = ACTIONS(1117), - [anon_sym_strictfp] = ACTIONS(1117), - [anon_sym_native] = ACTIONS(1117), - [anon_sym_transient] = ACTIONS(1117), - [anon_sym_volatile] = ACTIONS(1117), - [anon_sym_sealed] = ACTIONS(1117), - [anon_sym_non_DASHsealed] = ACTIONS(1115), - [anon_sym_record] = ACTIONS(1117), - [anon_sym_ATinterface] = ACTIONS(1115), - [anon_sym_interface] = ACTIONS(1117), - [anon_sym_byte] = ACTIONS(1117), - [anon_sym_short] = ACTIONS(1117), - [anon_sym_int] = ACTIONS(1117), - [anon_sym_long] = ACTIONS(1117), - [anon_sym_char] = ACTIONS(1117), - [anon_sym_float] = ACTIONS(1117), - [anon_sym_double] = ACTIONS(1117), - [sym_boolean_type] = ACTIONS(1117), - [sym_void_type] = ACTIONS(1117), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(1117), + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1124), + [sym_decimal_integer_literal] = ACTIONS(1124), + [sym_hex_integer_literal] = ACTIONS(1124), + [sym_octal_integer_literal] = ACTIONS(1124), + [sym_binary_integer_literal] = ACTIONS(1122), + [sym_decimal_floating_point_literal] = ACTIONS(1122), + [sym_hex_floating_point_literal] = ACTIONS(1124), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_character_literal] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [sym_null_literal] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_final] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_new] = ACTIONS(1124), + [anon_sym_class] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_assert] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_synchronized] = ACTIONS(1124), + [anon_sym_throw] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_else] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [anon_sym_open] = ACTIONS(1124), + [anon_sym_module] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_with] = ACTIONS(1124), + [anon_sym_package] = ACTIONS(1124), + [anon_sym_import] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_public] = ACTIONS(1124), + [anon_sym_protected] = ACTIONS(1124), + [anon_sym_private] = ACTIONS(1124), + [anon_sym_abstract] = ACTIONS(1124), + [anon_sym_strictfp] = ACTIONS(1124), + [anon_sym_native] = ACTIONS(1124), + [anon_sym_transient] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_sealed] = ACTIONS(1124), + [anon_sym_non_DASHsealed] = ACTIONS(1122), + [anon_sym_record] = ACTIONS(1124), + [anon_sym_ATinterface] = ACTIONS(1122), + [anon_sym_interface] = ACTIONS(1124), + [anon_sym_byte] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [anon_sym_int] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_char] = ACTIONS(1124), + [anon_sym_float] = ACTIONS(1124), + [anon_sym_double] = ACTIONS(1124), + [sym_boolean_type] = ACTIONS(1124), + [sym_void_type] = ACTIONS(1124), + [sym_this] = ACTIONS(1124), + [sym_super] = ACTIONS(1124), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_identifier] = ACTIONS(1121), - [sym_decimal_integer_literal] = ACTIONS(1121), - [sym_hex_integer_literal] = ACTIONS(1121), - [sym_octal_integer_literal] = ACTIONS(1121), - [sym_binary_integer_literal] = ACTIONS(1119), - [sym_decimal_floating_point_literal] = ACTIONS(1119), - [sym_hex_floating_point_literal] = ACTIONS(1121), - [sym_true] = ACTIONS(1121), - [sym_false] = ACTIONS(1121), - [sym_character_literal] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [sym_null_literal] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_final] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_new] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_case] = ACTIONS(1121), - [anon_sym_default] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_assert] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_break] = ACTIONS(1121), - [anon_sym_continue] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1121), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_synchronized] = ACTIONS(1121), - [anon_sym_throw] = ACTIONS(1121), - [anon_sym_try] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_import] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1121), - [anon_sym_protected] = ACTIONS(1121), - [anon_sym_private] = ACTIONS(1121), - [anon_sym_abstract] = ACTIONS(1121), - [anon_sym_strictfp] = ACTIONS(1121), - [anon_sym_native] = ACTIONS(1121), - [anon_sym_transient] = ACTIONS(1121), - [anon_sym_volatile] = ACTIONS(1121), - [anon_sym_sealed] = ACTIONS(1121), - [anon_sym_non_DASHsealed] = ACTIONS(1119), - [anon_sym_record] = ACTIONS(1121), - [anon_sym_ATinterface] = ACTIONS(1119), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_byte] = ACTIONS(1121), - [anon_sym_short] = ACTIONS(1121), - [anon_sym_int] = ACTIONS(1121), - [anon_sym_long] = ACTIONS(1121), - [anon_sym_char] = ACTIONS(1121), - [anon_sym_float] = ACTIONS(1121), - [anon_sym_double] = ACTIONS(1121), - [sym_boolean_type] = ACTIONS(1121), - [sym_void_type] = ACTIONS(1121), - [sym_this] = ACTIONS(1121), - [sym_super] = ACTIONS(1121), + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1128), + [sym_decimal_integer_literal] = ACTIONS(1128), + [sym_hex_integer_literal] = ACTIONS(1128), + [sym_octal_integer_literal] = ACTIONS(1128), + [sym_binary_integer_literal] = ACTIONS(1126), + [sym_decimal_floating_point_literal] = ACTIONS(1126), + [sym_hex_floating_point_literal] = ACTIONS(1128), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_character_literal] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [sym_null_literal] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_final] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_class] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_case] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_assert] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_yield] = ACTIONS(1128), + [anon_sym_synchronized] = ACTIONS(1128), + [anon_sym_throw] = ACTIONS(1128), + [anon_sym_try] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_else] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1128), + [anon_sym_open] = ACTIONS(1128), + [anon_sym_module] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_with] = ACTIONS(1128), + [anon_sym_package] = ACTIONS(1128), + [anon_sym_import] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [anon_sym_public] = ACTIONS(1128), + [anon_sym_protected] = ACTIONS(1128), + [anon_sym_private] = ACTIONS(1128), + [anon_sym_abstract] = ACTIONS(1128), + [anon_sym_strictfp] = ACTIONS(1128), + [anon_sym_native] = ACTIONS(1128), + [anon_sym_transient] = ACTIONS(1128), + [anon_sym_volatile] = ACTIONS(1128), + [anon_sym_sealed] = ACTIONS(1128), + [anon_sym_non_DASHsealed] = ACTIONS(1126), + [anon_sym_record] = ACTIONS(1128), + [anon_sym_ATinterface] = ACTIONS(1126), + [anon_sym_interface] = ACTIONS(1128), + [anon_sym_byte] = ACTIONS(1128), + [anon_sym_short] = ACTIONS(1128), + [anon_sym_int] = ACTIONS(1128), + [anon_sym_long] = ACTIONS(1128), + [anon_sym_char] = ACTIONS(1128), + [anon_sym_float] = ACTIONS(1128), + [anon_sym_double] = ACTIONS(1128), + [sym_boolean_type] = ACTIONS(1128), + [sym_void_type] = ACTIONS(1128), + [sym_this] = ACTIONS(1128), + [sym_super] = ACTIONS(1128), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1123), - [sym_identifier] = ACTIONS(1125), - [sym_decimal_integer_literal] = ACTIONS(1125), - [sym_hex_integer_literal] = ACTIONS(1125), - [sym_octal_integer_literal] = ACTIONS(1125), - [sym_binary_integer_literal] = ACTIONS(1123), - [sym_decimal_floating_point_literal] = ACTIONS(1123), - [sym_hex_floating_point_literal] = ACTIONS(1125), - [sym_true] = ACTIONS(1125), - [sym_false] = ACTIONS(1125), - [sym_character_literal] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [sym_null_literal] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_final] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_new] = ACTIONS(1125), - [anon_sym_class] = ACTIONS(1125), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1125), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1125), - [anon_sym_do] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1125), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1125), - [anon_sym_yield] = ACTIONS(1125), - [anon_sym_synchronized] = ACTIONS(1125), - [anon_sym_throw] = ACTIONS(1125), - [anon_sym_try] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1125), - [anon_sym_for] = ACTIONS(1125), - [anon_sym_AT] = ACTIONS(1125), - [anon_sym_open] = ACTIONS(1125), - [anon_sym_module] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_with] = ACTIONS(1125), - [anon_sym_package] = ACTIONS(1125), - [anon_sym_import] = ACTIONS(1125), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_public] = ACTIONS(1125), - [anon_sym_protected] = ACTIONS(1125), - [anon_sym_private] = ACTIONS(1125), - [anon_sym_abstract] = ACTIONS(1125), - [anon_sym_strictfp] = ACTIONS(1125), - [anon_sym_native] = ACTIONS(1125), - [anon_sym_transient] = ACTIONS(1125), - [anon_sym_volatile] = ACTIONS(1125), - [anon_sym_sealed] = ACTIONS(1125), - [anon_sym_non_DASHsealed] = ACTIONS(1123), - [anon_sym_record] = ACTIONS(1125), - [anon_sym_ATinterface] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1125), - [anon_sym_byte] = ACTIONS(1125), - [anon_sym_short] = ACTIONS(1125), - [anon_sym_int] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1125), - [anon_sym_char] = ACTIONS(1125), - [anon_sym_float] = ACTIONS(1125), - [anon_sym_double] = ACTIONS(1125), - [sym_boolean_type] = ACTIONS(1125), - [sym_void_type] = ACTIONS(1125), - [sym_this] = ACTIONS(1125), - [sym_super] = ACTIONS(1125), + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_identifier] = ACTIONS(1132), + [sym_decimal_integer_literal] = ACTIONS(1132), + [sym_hex_integer_literal] = ACTIONS(1132), + [sym_octal_integer_literal] = ACTIONS(1132), + [sym_binary_integer_literal] = ACTIONS(1130), + [sym_decimal_floating_point_literal] = ACTIONS(1130), + [sym_hex_floating_point_literal] = ACTIONS(1132), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_character_literal] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1132), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [sym_null_literal] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_final] = ACTIONS(1132), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_new] = ACTIONS(1132), + [anon_sym_class] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_assert] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_yield] = ACTIONS(1132), + [anon_sym_synchronized] = ACTIONS(1132), + [anon_sym_throw] = ACTIONS(1132), + [anon_sym_try] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_else] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1132), + [anon_sym_open] = ACTIONS(1132), + [anon_sym_module] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_with] = ACTIONS(1132), + [anon_sym_package] = ACTIONS(1132), + [anon_sym_import] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_public] = ACTIONS(1132), + [anon_sym_protected] = ACTIONS(1132), + [anon_sym_private] = ACTIONS(1132), + [anon_sym_abstract] = ACTIONS(1132), + [anon_sym_strictfp] = ACTIONS(1132), + [anon_sym_native] = ACTIONS(1132), + [anon_sym_transient] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_sealed] = ACTIONS(1132), + [anon_sym_non_DASHsealed] = ACTIONS(1130), + [anon_sym_record] = ACTIONS(1132), + [anon_sym_ATinterface] = ACTIONS(1130), + [anon_sym_interface] = ACTIONS(1132), + [anon_sym_byte] = ACTIONS(1132), + [anon_sym_short] = ACTIONS(1132), + [anon_sym_int] = ACTIONS(1132), + [anon_sym_long] = ACTIONS(1132), + [anon_sym_char] = ACTIONS(1132), + [anon_sym_float] = ACTIONS(1132), + [anon_sym_double] = ACTIONS(1132), + [sym_boolean_type] = ACTIONS(1132), + [sym_void_type] = ACTIONS(1132), + [sym_this] = ACTIONS(1132), + [sym_super] = ACTIONS(1132), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(480), - [sym_identifier] = ACTIONS(478), - [sym_decimal_integer_literal] = ACTIONS(478), - [sym_hex_integer_literal] = ACTIONS(478), - [sym_octal_integer_literal] = ACTIONS(478), - [sym_binary_integer_literal] = ACTIONS(480), - [sym_decimal_floating_point_literal] = ACTIONS(480), - [sym_hex_floating_point_literal] = ACTIONS(478), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_character_literal] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [sym_null_literal] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_final] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_new] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_case] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_assert] = ACTIONS(478), - [anon_sym_do] = ACTIONS(478), - [anon_sym_while] = ACTIONS(478), - [anon_sym_break] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_return] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(478), - [anon_sym_synchronized] = ACTIONS(478), - [anon_sym_throw] = ACTIONS(478), - [anon_sym_try] = ACTIONS(478), - [anon_sym_if] = ACTIONS(478), - [anon_sym_else] = ACTIONS(478), - [anon_sym_for] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_open] = ACTIONS(478), - [anon_sym_module] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_with] = ACTIONS(478), - [anon_sym_package] = ACTIONS(478), - [anon_sym_import] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_public] = ACTIONS(478), - [anon_sym_protected] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(478), - [anon_sym_strictfp] = ACTIONS(478), - [anon_sym_native] = ACTIONS(478), - [anon_sym_transient] = ACTIONS(478), - [anon_sym_volatile] = ACTIONS(478), - [anon_sym_sealed] = ACTIONS(478), - [anon_sym_non_DASHsealed] = ACTIONS(480), - [anon_sym_record] = ACTIONS(478), - [anon_sym_ATinterface] = ACTIONS(480), - [anon_sym_interface] = ACTIONS(478), - [anon_sym_byte] = ACTIONS(478), - [anon_sym_short] = ACTIONS(478), - [anon_sym_int] = ACTIONS(478), - [anon_sym_long] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_float] = ACTIONS(478), - [anon_sym_double] = ACTIONS(478), - [sym_boolean_type] = ACTIONS(478), - [sym_void_type] = ACTIONS(478), - [sym_this] = ACTIONS(478), - [sym_super] = ACTIONS(478), + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1136), + [sym_decimal_integer_literal] = ACTIONS(1136), + [sym_hex_integer_literal] = ACTIONS(1136), + [sym_octal_integer_literal] = ACTIONS(1136), + [sym_binary_integer_literal] = ACTIONS(1134), + [sym_decimal_floating_point_literal] = ACTIONS(1134), + [sym_hex_floating_point_literal] = ACTIONS(1136), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_character_literal] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1136), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [sym_null_literal] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_final] = ACTIONS(1136), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_new] = ACTIONS(1136), + [anon_sym_class] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_assert] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_yield] = ACTIONS(1136), + [anon_sym_synchronized] = ACTIONS(1136), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_try] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_else] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1136), + [anon_sym_open] = ACTIONS(1136), + [anon_sym_module] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_with] = ACTIONS(1136), + [anon_sym_package] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_public] = ACTIONS(1136), + [anon_sym_protected] = ACTIONS(1136), + [anon_sym_private] = ACTIONS(1136), + [anon_sym_abstract] = ACTIONS(1136), + [anon_sym_strictfp] = ACTIONS(1136), + [anon_sym_native] = ACTIONS(1136), + [anon_sym_transient] = ACTIONS(1136), + [anon_sym_volatile] = ACTIONS(1136), + [anon_sym_sealed] = ACTIONS(1136), + [anon_sym_non_DASHsealed] = ACTIONS(1134), + [anon_sym_record] = ACTIONS(1136), + [anon_sym_ATinterface] = ACTIONS(1134), + [anon_sym_interface] = ACTIONS(1136), + [anon_sym_byte] = ACTIONS(1136), + [anon_sym_short] = ACTIONS(1136), + [anon_sym_int] = ACTIONS(1136), + [anon_sym_long] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_float] = ACTIONS(1136), + [anon_sym_double] = ACTIONS(1136), + [sym_boolean_type] = ACTIONS(1136), + [sym_void_type] = ACTIONS(1136), + [sym_this] = ACTIONS(1136), + [sym_super] = ACTIONS(1136), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1127), - [sym_identifier] = ACTIONS(1129), - [sym_decimal_integer_literal] = ACTIONS(1129), - [sym_hex_integer_literal] = ACTIONS(1129), - [sym_octal_integer_literal] = ACTIONS(1129), - [sym_binary_integer_literal] = ACTIONS(1127), - [sym_decimal_floating_point_literal] = ACTIONS(1127), - [sym_hex_floating_point_literal] = ACTIONS(1129), - [sym_true] = ACTIONS(1129), - [sym_false] = ACTIONS(1129), - [sym_character_literal] = ACTIONS(1127), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1127), - [sym_null_literal] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_final] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1129), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_switch] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1129), - [anon_sym_default] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1129), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1129), - [anon_sym_break] = ACTIONS(1129), - [anon_sym_continue] = ACTIONS(1129), - [anon_sym_return] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1129), - [anon_sym_synchronized] = ACTIONS(1129), - [anon_sym_throw] = ACTIONS(1129), - [anon_sym_try] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(1129), - [anon_sym_open] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_with] = ACTIONS(1129), - [anon_sym_package] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(1129), - [anon_sym_strictfp] = ACTIONS(1129), - [anon_sym_native] = ACTIONS(1129), - [anon_sym_transient] = ACTIONS(1129), - [anon_sym_volatile] = ACTIONS(1129), - [anon_sym_sealed] = ACTIONS(1129), - [anon_sym_non_DASHsealed] = ACTIONS(1127), - [anon_sym_record] = ACTIONS(1129), - [anon_sym_ATinterface] = ACTIONS(1127), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_byte] = ACTIONS(1129), - [anon_sym_short] = ACTIONS(1129), - [anon_sym_int] = ACTIONS(1129), - [anon_sym_long] = ACTIONS(1129), - [anon_sym_char] = ACTIONS(1129), - [anon_sym_float] = ACTIONS(1129), - [anon_sym_double] = ACTIONS(1129), - [sym_boolean_type] = ACTIONS(1129), - [sym_void_type] = ACTIONS(1129), - [sym_this] = ACTIONS(1129), - [sym_super] = ACTIONS(1129), + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_identifier] = ACTIONS(1140), + [sym_decimal_integer_literal] = ACTIONS(1140), + [sym_hex_integer_literal] = ACTIONS(1140), + [sym_octal_integer_literal] = ACTIONS(1140), + [sym_binary_integer_literal] = ACTIONS(1138), + [sym_decimal_floating_point_literal] = ACTIONS(1138), + [sym_hex_floating_point_literal] = ACTIONS(1140), + [sym_true] = ACTIONS(1140), + [sym_false] = ACTIONS(1140), + [sym_character_literal] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1140), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [sym_null_literal] = ACTIONS(1140), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1138), + [anon_sym_PLUS] = ACTIONS(1140), + [anon_sym_DASH] = ACTIONS(1140), + [anon_sym_final] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1140), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_switch] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_case] = ACTIONS(1140), + [anon_sym_default] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_assert] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_break] = ACTIONS(1140), + [anon_sym_continue] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_yield] = ACTIONS(1140), + [anon_sym_synchronized] = ACTIONS(1140), + [anon_sym_throw] = ACTIONS(1140), + [anon_sym_try] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1140), + [anon_sym_else] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1140), + [anon_sym_AT] = ACTIONS(1140), + [anon_sym_open] = ACTIONS(1140), + [anon_sym_module] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_with] = ACTIONS(1140), + [anon_sym_package] = ACTIONS(1140), + [anon_sym_import] = ACTIONS(1140), + [anon_sym_enum] = ACTIONS(1140), + [anon_sym_public] = ACTIONS(1140), + [anon_sym_protected] = ACTIONS(1140), + [anon_sym_private] = ACTIONS(1140), + [anon_sym_abstract] = ACTIONS(1140), + [anon_sym_strictfp] = ACTIONS(1140), + [anon_sym_native] = ACTIONS(1140), + [anon_sym_transient] = ACTIONS(1140), + [anon_sym_volatile] = ACTIONS(1140), + [anon_sym_sealed] = ACTIONS(1140), + [anon_sym_non_DASHsealed] = ACTIONS(1138), + [anon_sym_record] = ACTIONS(1140), + [anon_sym_ATinterface] = ACTIONS(1138), + [anon_sym_interface] = ACTIONS(1140), + [anon_sym_byte] = ACTIONS(1140), + [anon_sym_short] = ACTIONS(1140), + [anon_sym_int] = ACTIONS(1140), + [anon_sym_long] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_float] = ACTIONS(1140), + [anon_sym_double] = ACTIONS(1140), + [sym_boolean_type] = ACTIONS(1140), + [sym_void_type] = ACTIONS(1140), + [sym_this] = ACTIONS(1140), + [sym_super] = ACTIONS(1140), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_identifier] = ACTIONS(1133), - [sym_decimal_integer_literal] = ACTIONS(1133), - [sym_hex_integer_literal] = ACTIONS(1133), - [sym_octal_integer_literal] = ACTIONS(1133), - [sym_binary_integer_literal] = ACTIONS(1131), - [sym_decimal_floating_point_literal] = ACTIONS(1131), - [sym_hex_floating_point_literal] = ACTIONS(1133), - [sym_true] = ACTIONS(1133), - [sym_false] = ACTIONS(1133), - [sym_character_literal] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1131), - [anon_sym_RBRACE] = ACTIONS(1131), - [sym_null_literal] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_final] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_TILDE] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1131), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_class] = ACTIONS(1133), - [anon_sym_switch] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_case] = ACTIONS(1133), - [anon_sym_default] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1133), - [anon_sym_do] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1133), - [anon_sym_continue] = ACTIONS(1133), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1133), - [anon_sym_synchronized] = ACTIONS(1133), - [anon_sym_throw] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1133), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_else] = ACTIONS(1133), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1133), - [anon_sym_open] = ACTIONS(1133), - [anon_sym_module] = ACTIONS(1133), - [anon_sym_static] = ACTIONS(1133), - [anon_sym_with] = ACTIONS(1133), - [anon_sym_package] = ACTIONS(1133), - [anon_sym_import] = ACTIONS(1133), - [anon_sym_enum] = ACTIONS(1133), - [anon_sym_public] = ACTIONS(1133), - [anon_sym_protected] = ACTIONS(1133), - [anon_sym_private] = ACTIONS(1133), - [anon_sym_abstract] = ACTIONS(1133), - [anon_sym_strictfp] = ACTIONS(1133), - [anon_sym_native] = ACTIONS(1133), - [anon_sym_transient] = ACTIONS(1133), - [anon_sym_volatile] = ACTIONS(1133), - [anon_sym_sealed] = ACTIONS(1133), - [anon_sym_non_DASHsealed] = ACTIONS(1131), - [anon_sym_record] = ACTIONS(1133), - [anon_sym_ATinterface] = ACTIONS(1131), - [anon_sym_interface] = ACTIONS(1133), - [anon_sym_byte] = ACTIONS(1133), - [anon_sym_short] = ACTIONS(1133), - [anon_sym_int] = ACTIONS(1133), - [anon_sym_long] = ACTIONS(1133), - [anon_sym_char] = ACTIONS(1133), - [anon_sym_float] = ACTIONS(1133), - [anon_sym_double] = ACTIONS(1133), - [sym_boolean_type] = ACTIONS(1133), - [sym_void_type] = ACTIONS(1133), - [sym_this] = ACTIONS(1133), - [sym_super] = ACTIONS(1133), + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_identifier] = ACTIONS(1144), + [sym_decimal_integer_literal] = ACTIONS(1144), + [sym_hex_integer_literal] = ACTIONS(1144), + [sym_octal_integer_literal] = ACTIONS(1144), + [sym_binary_integer_literal] = ACTIONS(1142), + [sym_decimal_floating_point_literal] = ACTIONS(1142), + [sym_hex_floating_point_literal] = ACTIONS(1144), + [sym_true] = ACTIONS(1144), + [sym_false] = ACTIONS(1144), + [sym_character_literal] = ACTIONS(1142), + [anon_sym_DQUOTE] = ACTIONS(1144), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1142), + [sym_null_literal] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(1142), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_PLUS] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_final] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_TILDE] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1142), + [anon_sym_new] = ACTIONS(1144), + [anon_sym_class] = ACTIONS(1144), + [anon_sym_switch] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_case] = ACTIONS(1144), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1142), + [anon_sym_assert] = ACTIONS(1144), + [anon_sym_do] = ACTIONS(1144), + [anon_sym_while] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1144), + [anon_sym_continue] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1144), + [anon_sym_synchronized] = ACTIONS(1144), + [anon_sym_throw] = ACTIONS(1144), + [anon_sym_try] = ACTIONS(1144), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_else] = ACTIONS(1144), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1144), + [anon_sym_open] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_with] = ACTIONS(1144), + [anon_sym_package] = ACTIONS(1144), + [anon_sym_import] = ACTIONS(1144), + [anon_sym_enum] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_abstract] = ACTIONS(1144), + [anon_sym_strictfp] = ACTIONS(1144), + [anon_sym_native] = ACTIONS(1144), + [anon_sym_transient] = ACTIONS(1144), + [anon_sym_volatile] = ACTIONS(1144), + [anon_sym_sealed] = ACTIONS(1144), + [anon_sym_non_DASHsealed] = ACTIONS(1142), + [anon_sym_record] = ACTIONS(1144), + [anon_sym_ATinterface] = ACTIONS(1142), + [anon_sym_interface] = ACTIONS(1144), + [anon_sym_byte] = ACTIONS(1144), + [anon_sym_short] = ACTIONS(1144), + [anon_sym_int] = ACTIONS(1144), + [anon_sym_long] = ACTIONS(1144), + [anon_sym_char] = ACTIONS(1144), + [anon_sym_float] = ACTIONS(1144), + [anon_sym_double] = ACTIONS(1144), + [sym_boolean_type] = ACTIONS(1144), + [sym_void_type] = ACTIONS(1144), + [sym_this] = ACTIONS(1144), + [sym_super] = ACTIONS(1144), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1135), - [sym_identifier] = ACTIONS(1137), - [sym_decimal_integer_literal] = ACTIONS(1137), - [sym_hex_integer_literal] = ACTIONS(1137), - [sym_octal_integer_literal] = ACTIONS(1137), - [sym_binary_integer_literal] = ACTIONS(1135), - [sym_decimal_floating_point_literal] = ACTIONS(1135), - [sym_hex_floating_point_literal] = ACTIONS(1137), - [sym_true] = ACTIONS(1137), - [sym_false] = ACTIONS(1137), - [sym_character_literal] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1135), - [sym_null_literal] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_final] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [anon_sym_new] = ACTIONS(1137), - [anon_sym_class] = ACTIONS(1137), - [anon_sym_switch] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_case] = ACTIONS(1137), - [anon_sym_default] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1137), - [anon_sym_do] = ACTIONS(1137), - [anon_sym_while] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1137), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_yield] = ACTIONS(1137), - [anon_sym_synchronized] = ACTIONS(1137), - [anon_sym_throw] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1137), - [anon_sym_if] = ACTIONS(1137), - [anon_sym_else] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1137), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_open] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1137), - [anon_sym_package] = ACTIONS(1137), - [anon_sym_import] = ACTIONS(1137), - [anon_sym_enum] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_abstract] = ACTIONS(1137), - [anon_sym_strictfp] = ACTIONS(1137), - [anon_sym_native] = ACTIONS(1137), - [anon_sym_transient] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_sealed] = ACTIONS(1137), - [anon_sym_non_DASHsealed] = ACTIONS(1135), - [anon_sym_record] = ACTIONS(1137), - [anon_sym_ATinterface] = ACTIONS(1135), - [anon_sym_interface] = ACTIONS(1137), - [anon_sym_byte] = ACTIONS(1137), - [anon_sym_short] = ACTIONS(1137), - [anon_sym_int] = ACTIONS(1137), - [anon_sym_long] = ACTIONS(1137), - [anon_sym_char] = ACTIONS(1137), - [anon_sym_float] = ACTIONS(1137), - [anon_sym_double] = ACTIONS(1137), - [sym_boolean_type] = ACTIONS(1137), - [sym_void_type] = ACTIONS(1137), - [sym_this] = ACTIONS(1137), - [sym_super] = ACTIONS(1137), + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [sym_decimal_integer_literal] = ACTIONS(1148), + [sym_hex_integer_literal] = ACTIONS(1148), + [sym_octal_integer_literal] = ACTIONS(1148), + [sym_binary_integer_literal] = ACTIONS(1146), + [sym_decimal_floating_point_literal] = ACTIONS(1146), + [sym_hex_floating_point_literal] = ACTIONS(1148), + [sym_true] = ACTIONS(1148), + [sym_false] = ACTIONS(1148), + [sym_character_literal] = ACTIONS(1146), + [anon_sym_DQUOTE] = ACTIONS(1148), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [sym_null_literal] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_final] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_TILDE] = ACTIONS(1146), + [anon_sym_PLUS_PLUS] = ACTIONS(1146), + [anon_sym_DASH_DASH] = ACTIONS(1146), + [anon_sym_new] = ACTIONS(1148), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_switch] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_case] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1148), + [anon_sym_synchronized] = ACTIONS(1148), + [anon_sym_throw] = ACTIONS(1148), + [anon_sym_try] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_else] = ACTIONS(1148), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1148), + [anon_sym_open] = ACTIONS(1148), + [anon_sym_module] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_with] = ACTIONS(1148), + [anon_sym_package] = ACTIONS(1148), + [anon_sym_import] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1148), + [anon_sym_protected] = ACTIONS(1148), + [anon_sym_private] = ACTIONS(1148), + [anon_sym_abstract] = ACTIONS(1148), + [anon_sym_strictfp] = ACTIONS(1148), + [anon_sym_native] = ACTIONS(1148), + [anon_sym_transient] = ACTIONS(1148), + [anon_sym_volatile] = ACTIONS(1148), + [anon_sym_sealed] = ACTIONS(1148), + [anon_sym_non_DASHsealed] = ACTIONS(1146), + [anon_sym_record] = ACTIONS(1148), + [anon_sym_ATinterface] = ACTIONS(1146), + [anon_sym_interface] = ACTIONS(1148), + [anon_sym_byte] = ACTIONS(1148), + [anon_sym_short] = ACTIONS(1148), + [anon_sym_int] = ACTIONS(1148), + [anon_sym_long] = ACTIONS(1148), + [anon_sym_char] = ACTIONS(1148), + [anon_sym_float] = ACTIONS(1148), + [anon_sym_double] = ACTIONS(1148), + [sym_boolean_type] = ACTIONS(1148), + [sym_void_type] = ACTIONS(1148), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(1148), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1141), - [sym_decimal_integer_literal] = ACTIONS(1141), - [sym_hex_integer_literal] = ACTIONS(1141), - [sym_octal_integer_literal] = ACTIONS(1141), - [sym_binary_integer_literal] = ACTIONS(1139), - [sym_decimal_floating_point_literal] = ACTIONS(1139), - [sym_hex_floating_point_literal] = ACTIONS(1141), - [sym_true] = ACTIONS(1141), - [sym_false] = ACTIONS(1141), - [sym_character_literal] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [sym_null_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_final] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_class] = ACTIONS(1141), - [anon_sym_switch] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_assert] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1141), - [anon_sym_continue] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_synchronized] = ACTIONS(1141), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1141), - [anon_sym_else] = ACTIONS(1141), - [anon_sym_for] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_open] = ACTIONS(1141), - [anon_sym_module] = ACTIONS(1141), - [anon_sym_static] = ACTIONS(1141), - [anon_sym_with] = ACTIONS(1141), - [anon_sym_package] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [anon_sym_public] = ACTIONS(1141), - [anon_sym_protected] = ACTIONS(1141), - [anon_sym_private] = ACTIONS(1141), - [anon_sym_abstract] = ACTIONS(1141), - [anon_sym_strictfp] = ACTIONS(1141), - [anon_sym_native] = ACTIONS(1141), - [anon_sym_transient] = ACTIONS(1141), - [anon_sym_volatile] = ACTIONS(1141), - [anon_sym_sealed] = ACTIONS(1141), - [anon_sym_non_DASHsealed] = ACTIONS(1139), - [anon_sym_record] = ACTIONS(1141), - [anon_sym_ATinterface] = ACTIONS(1139), - [anon_sym_interface] = ACTIONS(1141), - [anon_sym_byte] = ACTIONS(1141), - [anon_sym_short] = ACTIONS(1141), - [anon_sym_int] = ACTIONS(1141), - [anon_sym_long] = ACTIONS(1141), - [anon_sym_char] = ACTIONS(1141), - [anon_sym_float] = ACTIONS(1141), - [anon_sym_double] = ACTIONS(1141), - [sym_boolean_type] = ACTIONS(1141), - [sym_void_type] = ACTIONS(1141), - [sym_this] = ACTIONS(1141), - [sym_super] = ACTIONS(1141), + [ts_builtin_sym_end] = ACTIONS(491), + [sym_identifier] = ACTIONS(489), + [sym_decimal_integer_literal] = ACTIONS(489), + [sym_hex_integer_literal] = ACTIONS(489), + [sym_octal_integer_literal] = ACTIONS(489), + [sym_binary_integer_literal] = ACTIONS(491), + [sym_decimal_floating_point_literal] = ACTIONS(491), + [sym_hex_floating_point_literal] = ACTIONS(489), + [sym_true] = ACTIONS(489), + [sym_false] = ACTIONS(489), + [sym_character_literal] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(489), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(491), + [sym_null_literal] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_final] = ACTIONS(489), + [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(489), + [anon_sym_class] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(491), + [anon_sym_case] = ACTIONS(489), + [anon_sym_default] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(491), + [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_with] = 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_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(491), + [anon_sym_record] = ACTIONS(489), + [anon_sym_ATinterface] = ACTIONS(491), + [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), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_identifier] = ACTIONS(1145), - [sym_decimal_integer_literal] = ACTIONS(1145), - [sym_hex_integer_literal] = ACTIONS(1145), - [sym_octal_integer_literal] = ACTIONS(1145), - [sym_binary_integer_literal] = ACTIONS(1143), - [sym_decimal_floating_point_literal] = ACTIONS(1143), - [sym_hex_floating_point_literal] = ACTIONS(1145), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [sym_character_literal] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [sym_null_literal] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_final] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_new] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_assert] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_yield] = ACTIONS(1145), - [anon_sym_synchronized] = ACTIONS(1145), - [anon_sym_throw] = ACTIONS(1145), - [anon_sym_try] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_AT] = ACTIONS(1145), - [anon_sym_open] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_with] = ACTIONS(1145), - [anon_sym_package] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [anon_sym_public] = ACTIONS(1145), - [anon_sym_protected] = ACTIONS(1145), - [anon_sym_private] = ACTIONS(1145), - [anon_sym_abstract] = ACTIONS(1145), - [anon_sym_strictfp] = ACTIONS(1145), - [anon_sym_native] = ACTIONS(1145), - [anon_sym_transient] = ACTIONS(1145), - [anon_sym_volatile] = ACTIONS(1145), - [anon_sym_sealed] = ACTIONS(1145), - [anon_sym_non_DASHsealed] = ACTIONS(1143), - [anon_sym_record] = ACTIONS(1145), - [anon_sym_ATinterface] = ACTIONS(1143), - [anon_sym_interface] = ACTIONS(1145), - [anon_sym_byte] = ACTIONS(1145), - [anon_sym_short] = ACTIONS(1145), - [anon_sym_int] = ACTIONS(1145), - [anon_sym_long] = ACTIONS(1145), - [anon_sym_char] = ACTIONS(1145), - [anon_sym_float] = ACTIONS(1145), - [anon_sym_double] = ACTIONS(1145), - [sym_boolean_type] = ACTIONS(1145), - [sym_void_type] = ACTIONS(1145), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(1145), + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1152), + [sym_decimal_integer_literal] = ACTIONS(1152), + [sym_hex_integer_literal] = ACTIONS(1152), + [sym_octal_integer_literal] = ACTIONS(1152), + [sym_binary_integer_literal] = ACTIONS(1150), + [sym_decimal_floating_point_literal] = ACTIONS(1150), + [sym_hex_floating_point_literal] = ACTIONS(1152), + [sym_true] = ACTIONS(1152), + [sym_false] = ACTIONS(1152), + [sym_character_literal] = ACTIONS(1150), + [anon_sym_DQUOTE] = ACTIONS(1152), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [sym_null_literal] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_PLUS] = ACTIONS(1152), + [anon_sym_DASH] = ACTIONS(1152), + [anon_sym_final] = ACTIONS(1152), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_TILDE] = ACTIONS(1150), + [anon_sym_PLUS_PLUS] = ACTIONS(1150), + [anon_sym_DASH_DASH] = ACTIONS(1150), + [anon_sym_new] = ACTIONS(1152), + [anon_sym_class] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_case] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_assert] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_synchronized] = ACTIONS(1152), + [anon_sym_throw] = ACTIONS(1152), + [anon_sym_try] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_else] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(1152), + [anon_sym_open] = ACTIONS(1152), + [anon_sym_module] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_with] = ACTIONS(1152), + [anon_sym_package] = ACTIONS(1152), + [anon_sym_import] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [anon_sym_public] = ACTIONS(1152), + [anon_sym_protected] = ACTIONS(1152), + [anon_sym_private] = ACTIONS(1152), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_strictfp] = ACTIONS(1152), + [anon_sym_native] = ACTIONS(1152), + [anon_sym_transient] = ACTIONS(1152), + [anon_sym_volatile] = ACTIONS(1152), + [anon_sym_sealed] = ACTIONS(1152), + [anon_sym_non_DASHsealed] = ACTIONS(1150), + [anon_sym_record] = ACTIONS(1152), + [anon_sym_ATinterface] = ACTIONS(1150), + [anon_sym_interface] = ACTIONS(1152), + [anon_sym_byte] = ACTIONS(1152), + [anon_sym_short] = ACTIONS(1152), + [anon_sym_int] = ACTIONS(1152), + [anon_sym_long] = ACTIONS(1152), + [anon_sym_char] = ACTIONS(1152), + [anon_sym_float] = ACTIONS(1152), + [anon_sym_double] = ACTIONS(1152), + [sym_boolean_type] = ACTIONS(1152), + [sym_void_type] = ACTIONS(1152), + [sym_this] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_identifier] = ACTIONS(1149), - [sym_decimal_integer_literal] = ACTIONS(1149), - [sym_hex_integer_literal] = ACTIONS(1149), - [sym_octal_integer_literal] = ACTIONS(1149), - [sym_binary_integer_literal] = ACTIONS(1147), - [sym_decimal_floating_point_literal] = ACTIONS(1147), - [sym_hex_floating_point_literal] = ACTIONS(1149), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_character_literal] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1147), - [sym_null_literal] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_final] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_new] = ACTIONS(1149), - [anon_sym_class] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_assert] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_synchronized] = ACTIONS(1149), - [anon_sym_throw] = ACTIONS(1149), - [anon_sym_try] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(1149), - [anon_sym_open] = ACTIONS(1149), - [anon_sym_module] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_with] = ACTIONS(1149), - [anon_sym_package] = ACTIONS(1149), - [anon_sym_import] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [anon_sym_public] = ACTIONS(1149), - [anon_sym_protected] = ACTIONS(1149), - [anon_sym_private] = ACTIONS(1149), - [anon_sym_abstract] = ACTIONS(1149), - [anon_sym_strictfp] = ACTIONS(1149), - [anon_sym_native] = ACTIONS(1149), - [anon_sym_transient] = ACTIONS(1149), - [anon_sym_volatile] = ACTIONS(1149), - [anon_sym_sealed] = ACTIONS(1149), - [anon_sym_non_DASHsealed] = ACTIONS(1147), - [anon_sym_record] = ACTIONS(1149), - [anon_sym_ATinterface] = ACTIONS(1147), - [anon_sym_interface] = ACTIONS(1149), - [anon_sym_byte] = ACTIONS(1149), - [anon_sym_short] = ACTIONS(1149), - [anon_sym_int] = ACTIONS(1149), - [anon_sym_long] = ACTIONS(1149), - [anon_sym_char] = ACTIONS(1149), - [anon_sym_float] = ACTIONS(1149), - [anon_sym_double] = ACTIONS(1149), - [sym_boolean_type] = ACTIONS(1149), - [sym_void_type] = ACTIONS(1149), - [sym_this] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1156), + [sym_decimal_integer_literal] = ACTIONS(1156), + [sym_hex_integer_literal] = ACTIONS(1156), + [sym_octal_integer_literal] = ACTIONS(1156), + [sym_binary_integer_literal] = ACTIONS(1154), + [sym_decimal_floating_point_literal] = ACTIONS(1154), + [sym_hex_floating_point_literal] = ACTIONS(1156), + [sym_true] = ACTIONS(1156), + [sym_false] = ACTIONS(1156), + [sym_character_literal] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1156), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [sym_null_literal] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_final] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [anon_sym_new] = ACTIONS(1156), + [anon_sym_class] = ACTIONS(1156), + [anon_sym_switch] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_case] = ACTIONS(1156), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_assert] = ACTIONS(1156), + [anon_sym_do] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_synchronized] = ACTIONS(1156), + [anon_sym_throw] = ACTIONS(1156), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_else] = ACTIONS(1156), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_AT] = ACTIONS(1156), + [anon_sym_open] = ACTIONS(1156), + [anon_sym_module] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_with] = ACTIONS(1156), + [anon_sym_package] = ACTIONS(1156), + [anon_sym_import] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [anon_sym_public] = ACTIONS(1156), + [anon_sym_protected] = ACTIONS(1156), + [anon_sym_private] = ACTIONS(1156), + [anon_sym_abstract] = ACTIONS(1156), + [anon_sym_strictfp] = ACTIONS(1156), + [anon_sym_native] = ACTIONS(1156), + [anon_sym_transient] = ACTIONS(1156), + [anon_sym_volatile] = ACTIONS(1156), + [anon_sym_sealed] = ACTIONS(1156), + [anon_sym_non_DASHsealed] = ACTIONS(1154), + [anon_sym_record] = ACTIONS(1156), + [anon_sym_ATinterface] = ACTIONS(1154), + [anon_sym_interface] = ACTIONS(1156), + [anon_sym_byte] = ACTIONS(1156), + [anon_sym_short] = ACTIONS(1156), + [anon_sym_int] = ACTIONS(1156), + [anon_sym_long] = ACTIONS(1156), + [anon_sym_char] = ACTIONS(1156), + [anon_sym_float] = ACTIONS(1156), + [anon_sym_double] = ACTIONS(1156), + [sym_boolean_type] = ACTIONS(1156), + [sym_void_type] = ACTIONS(1156), + [sym_this] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1151), - [sym_identifier] = ACTIONS(1153), - [sym_decimal_integer_literal] = ACTIONS(1153), - [sym_hex_integer_literal] = ACTIONS(1153), - [sym_octal_integer_literal] = ACTIONS(1153), - [sym_binary_integer_literal] = ACTIONS(1151), - [sym_decimal_floating_point_literal] = ACTIONS(1151), - [sym_hex_floating_point_literal] = ACTIONS(1153), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [sym_character_literal] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1151), - [sym_null_literal] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_final] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym_assert] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_yield] = ACTIONS(1153), - [anon_sym_synchronized] = ACTIONS(1153), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1153), - [anon_sym_open] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_package] = ACTIONS(1153), - [anon_sym_import] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_public] = ACTIONS(1153), - [anon_sym_protected] = ACTIONS(1153), - [anon_sym_private] = ACTIONS(1153), - [anon_sym_abstract] = ACTIONS(1153), - [anon_sym_strictfp] = ACTIONS(1153), - [anon_sym_native] = ACTIONS(1153), - [anon_sym_transient] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_sealed] = ACTIONS(1153), - [anon_sym_non_DASHsealed] = ACTIONS(1151), - [anon_sym_record] = ACTIONS(1153), - [anon_sym_ATinterface] = ACTIONS(1151), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_byte] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_int] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_char] = ACTIONS(1153), - [anon_sym_float] = ACTIONS(1153), - [anon_sym_double] = ACTIONS(1153), - [sym_boolean_type] = ACTIONS(1153), - [sym_void_type] = ACTIONS(1153), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(1153), + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [sym_decimal_integer_literal] = ACTIONS(1160), + [sym_hex_integer_literal] = ACTIONS(1160), + [sym_octal_integer_literal] = ACTIONS(1160), + [sym_binary_integer_literal] = ACTIONS(1158), + [sym_decimal_floating_point_literal] = ACTIONS(1158), + [sym_hex_floating_point_literal] = ACTIONS(1160), + [sym_true] = ACTIONS(1160), + [sym_false] = ACTIONS(1160), + [sym_character_literal] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), + [sym_null_literal] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_PLUS] = ACTIONS(1160), + [anon_sym_DASH] = ACTIONS(1160), + [anon_sym_final] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_TILDE] = ACTIONS(1158), + [anon_sym_PLUS_PLUS] = ACTIONS(1158), + [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1160), + [anon_sym_class] = ACTIONS(1160), + [anon_sym_switch] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_case] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym_assert] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_synchronized] = ACTIONS(1160), + [anon_sym_throw] = ACTIONS(1160), + [anon_sym_try] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_else] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_AT] = ACTIONS(1160), + [anon_sym_open] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_with] = ACTIONS(1160), + [anon_sym_package] = ACTIONS(1160), + [anon_sym_import] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_strictfp] = ACTIONS(1160), + [anon_sym_native] = ACTIONS(1160), + [anon_sym_transient] = ACTIONS(1160), + [anon_sym_volatile] = ACTIONS(1160), + [anon_sym_sealed] = ACTIONS(1160), + [anon_sym_non_DASHsealed] = ACTIONS(1158), + [anon_sym_record] = ACTIONS(1160), + [anon_sym_ATinterface] = ACTIONS(1158), + [anon_sym_interface] = ACTIONS(1160), + [anon_sym_byte] = ACTIONS(1160), + [anon_sym_short] = ACTIONS(1160), + [anon_sym_int] = ACTIONS(1160), + [anon_sym_long] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_float] = ACTIONS(1160), + [anon_sym_double] = ACTIONS(1160), + [sym_boolean_type] = ACTIONS(1160), + [sym_void_type] = ACTIONS(1160), + [sym_this] = ACTIONS(1160), + [sym_super] = ACTIONS(1160), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1157), - [sym_decimal_integer_literal] = ACTIONS(1157), - [sym_hex_integer_literal] = ACTIONS(1157), - [sym_octal_integer_literal] = ACTIONS(1157), - [sym_binary_integer_literal] = ACTIONS(1155), - [sym_decimal_floating_point_literal] = ACTIONS(1155), - [sym_hex_floating_point_literal] = ACTIONS(1157), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [sym_character_literal] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1155), - [anon_sym_RBRACE] = ACTIONS(1155), - [sym_null_literal] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_final] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_new] = ACTIONS(1157), - [anon_sym_class] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_synchronized] = ACTIONS(1157), - [anon_sym_throw] = ACTIONS(1157), - [anon_sym_try] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_open] = ACTIONS(1157), - [anon_sym_module] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_with] = ACTIONS(1157), - [anon_sym_package] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), - [anon_sym_protected] = ACTIONS(1157), - [anon_sym_private] = ACTIONS(1157), - [anon_sym_abstract] = ACTIONS(1157), - [anon_sym_strictfp] = ACTIONS(1157), - [anon_sym_native] = ACTIONS(1157), - [anon_sym_transient] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_sealed] = ACTIONS(1157), - [anon_sym_non_DASHsealed] = ACTIONS(1155), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_ATinterface] = ACTIONS(1155), - [anon_sym_interface] = ACTIONS(1157), - [anon_sym_byte] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_int] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_char] = ACTIONS(1157), - [anon_sym_float] = ACTIONS(1157), - [anon_sym_double] = ACTIONS(1157), - [sym_boolean_type] = ACTIONS(1157), - [sym_void_type] = ACTIONS(1157), - [sym_this] = ACTIONS(1157), - [sym_super] = ACTIONS(1157), + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_identifier] = ACTIONS(1164), + [sym_decimal_integer_literal] = ACTIONS(1164), + [sym_hex_integer_literal] = ACTIONS(1164), + [sym_octal_integer_literal] = ACTIONS(1164), + [sym_binary_integer_literal] = ACTIONS(1162), + [sym_decimal_floating_point_literal] = ACTIONS(1162), + [sym_hex_floating_point_literal] = ACTIONS(1164), + [sym_true] = ACTIONS(1164), + [sym_false] = ACTIONS(1164), + [sym_character_literal] = ACTIONS(1162), + [anon_sym_DQUOTE] = ACTIONS(1164), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [sym_null_literal] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_final] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_TILDE] = ACTIONS(1162), + [anon_sym_PLUS_PLUS] = ACTIONS(1162), + [anon_sym_DASH_DASH] = ACTIONS(1162), + [anon_sym_new] = ACTIONS(1164), + [anon_sym_class] = ACTIONS(1164), + [anon_sym_switch] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_case] = ACTIONS(1164), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_assert] = ACTIONS(1164), + [anon_sym_do] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_synchronized] = ACTIONS(1164), + [anon_sym_throw] = ACTIONS(1164), + [anon_sym_try] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_else] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_open] = ACTIONS(1164), + [anon_sym_module] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1164), + [anon_sym_with] = ACTIONS(1164), + [anon_sym_package] = ACTIONS(1164), + [anon_sym_import] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_public] = ACTIONS(1164), + [anon_sym_protected] = ACTIONS(1164), + [anon_sym_private] = ACTIONS(1164), + [anon_sym_abstract] = ACTIONS(1164), + [anon_sym_strictfp] = ACTIONS(1164), + [anon_sym_native] = ACTIONS(1164), + [anon_sym_transient] = ACTIONS(1164), + [anon_sym_volatile] = ACTIONS(1164), + [anon_sym_sealed] = ACTIONS(1164), + [anon_sym_non_DASHsealed] = ACTIONS(1162), + [anon_sym_record] = ACTIONS(1164), + [anon_sym_ATinterface] = ACTIONS(1162), + [anon_sym_interface] = ACTIONS(1164), + [anon_sym_byte] = ACTIONS(1164), + [anon_sym_short] = ACTIONS(1164), + [anon_sym_int] = ACTIONS(1164), + [anon_sym_long] = ACTIONS(1164), + [anon_sym_char] = ACTIONS(1164), + [anon_sym_float] = ACTIONS(1164), + [anon_sym_double] = ACTIONS(1164), + [sym_boolean_type] = ACTIONS(1164), + [sym_void_type] = ACTIONS(1164), + [sym_this] = ACTIONS(1164), + [sym_super] = ACTIONS(1164), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_decimal_integer_literal] = ACTIONS(1161), - [sym_hex_integer_literal] = ACTIONS(1161), - [sym_octal_integer_literal] = ACTIONS(1161), - [sym_binary_integer_literal] = ACTIONS(1159), - [sym_decimal_floating_point_literal] = ACTIONS(1159), - [sym_hex_floating_point_literal] = ACTIONS(1161), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [sym_character_literal] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1159), - [sym_null_literal] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_final] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(1161), - [anon_sym_class] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1161), - [anon_sym_synchronized] = ACTIONS(1161), - [anon_sym_throw] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_open] = ACTIONS(1161), - [anon_sym_module] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_with] = ACTIONS(1161), - [anon_sym_package] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_abstract] = ACTIONS(1161), - [anon_sym_strictfp] = ACTIONS(1161), - [anon_sym_native] = ACTIONS(1161), - [anon_sym_transient] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_sealed] = ACTIONS(1161), - [anon_sym_non_DASHsealed] = ACTIONS(1159), - [anon_sym_record] = ACTIONS(1161), - [anon_sym_ATinterface] = ACTIONS(1159), - [anon_sym_interface] = ACTIONS(1161), - [anon_sym_byte] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_int] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_char] = ACTIONS(1161), - [anon_sym_float] = ACTIONS(1161), - [anon_sym_double] = ACTIONS(1161), - [sym_boolean_type] = ACTIONS(1161), - [sym_void_type] = ACTIONS(1161), - [sym_this] = ACTIONS(1161), - [sym_super] = ACTIONS(1161), + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1168), + [sym_decimal_integer_literal] = ACTIONS(1168), + [sym_hex_integer_literal] = ACTIONS(1168), + [sym_octal_integer_literal] = ACTIONS(1168), + [sym_binary_integer_literal] = ACTIONS(1166), + [sym_decimal_floating_point_literal] = ACTIONS(1166), + [sym_hex_floating_point_literal] = ACTIONS(1168), + [sym_true] = ACTIONS(1168), + [sym_false] = ACTIONS(1168), + [sym_character_literal] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(1168), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [sym_null_literal] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_final] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_new] = ACTIONS(1168), + [anon_sym_class] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1168), + [anon_sym_default] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_assert] = ACTIONS(1168), + [anon_sym_do] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1168), + [anon_sym_synchronized] = ACTIONS(1168), + [anon_sym_throw] = ACTIONS(1168), + [anon_sym_try] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_else] = ACTIONS(1168), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_AT] = ACTIONS(1168), + [anon_sym_open] = ACTIONS(1168), + [anon_sym_module] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_with] = ACTIONS(1168), + [anon_sym_package] = ACTIONS(1168), + [anon_sym_import] = ACTIONS(1168), + [anon_sym_enum] = ACTIONS(1168), + [anon_sym_public] = ACTIONS(1168), + [anon_sym_protected] = ACTIONS(1168), + [anon_sym_private] = ACTIONS(1168), + [anon_sym_abstract] = ACTIONS(1168), + [anon_sym_strictfp] = ACTIONS(1168), + [anon_sym_native] = ACTIONS(1168), + [anon_sym_transient] = ACTIONS(1168), + [anon_sym_volatile] = ACTIONS(1168), + [anon_sym_sealed] = ACTIONS(1168), + [anon_sym_non_DASHsealed] = ACTIONS(1166), + [anon_sym_record] = ACTIONS(1168), + [anon_sym_ATinterface] = ACTIONS(1166), + [anon_sym_interface] = ACTIONS(1168), + [anon_sym_byte] = ACTIONS(1168), + [anon_sym_short] = ACTIONS(1168), + [anon_sym_int] = ACTIONS(1168), + [anon_sym_long] = ACTIONS(1168), + [anon_sym_char] = ACTIONS(1168), + [anon_sym_float] = ACTIONS(1168), + [anon_sym_double] = ACTIONS(1168), + [sym_boolean_type] = ACTIONS(1168), + [sym_void_type] = ACTIONS(1168), + [sym_this] = ACTIONS(1168), + [sym_super] = ACTIONS(1168), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_identifier] = ACTIONS(1165), - [sym_decimal_integer_literal] = ACTIONS(1165), - [sym_hex_integer_literal] = ACTIONS(1165), - [sym_octal_integer_literal] = ACTIONS(1165), - [sym_binary_integer_literal] = ACTIONS(1163), - [sym_decimal_floating_point_literal] = ACTIONS(1163), - [sym_hex_floating_point_literal] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_character_literal] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), - [sym_null_literal] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_final] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1165), - [anon_sym_class] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_assert] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_yield] = ACTIONS(1165), - [anon_sym_synchronized] = ACTIONS(1165), - [anon_sym_throw] = ACTIONS(1165), - [anon_sym_try] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_open] = ACTIONS(1165), - [anon_sym_module] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_package] = ACTIONS(1165), - [anon_sym_import] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_abstract] = ACTIONS(1165), - [anon_sym_strictfp] = ACTIONS(1165), - [anon_sym_native] = ACTIONS(1165), - [anon_sym_transient] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_sealed] = ACTIONS(1165), - [anon_sym_non_DASHsealed] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1165), - [anon_sym_ATinterface] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1165), - [anon_sym_byte] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_int] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_char] = ACTIONS(1165), - [anon_sym_float] = ACTIONS(1165), - [anon_sym_double] = ACTIONS(1165), - [sym_boolean_type] = ACTIONS(1165), - [sym_void_type] = ACTIONS(1165), - [sym_this] = ACTIONS(1165), - [sym_super] = ACTIONS(1165), + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_identifier] = ACTIONS(1172), + [sym_decimal_integer_literal] = ACTIONS(1172), + [sym_hex_integer_literal] = ACTIONS(1172), + [sym_octal_integer_literal] = ACTIONS(1172), + [sym_binary_integer_literal] = ACTIONS(1170), + [sym_decimal_floating_point_literal] = ACTIONS(1170), + [sym_hex_floating_point_literal] = ACTIONS(1172), + [sym_true] = ACTIONS(1172), + [sym_false] = ACTIONS(1172), + [sym_character_literal] = ACTIONS(1170), + [anon_sym_DQUOTE] = ACTIONS(1172), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [sym_null_literal] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [anon_sym_final] = ACTIONS(1172), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1172), + [anon_sym_class] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_case] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1170), + [anon_sym_assert] = ACTIONS(1172), + [anon_sym_do] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_yield] = ACTIONS(1172), + [anon_sym_synchronized] = ACTIONS(1172), + [anon_sym_throw] = ACTIONS(1172), + [anon_sym_try] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_else] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1172), + [anon_sym_open] = ACTIONS(1172), + [anon_sym_module] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_with] = ACTIONS(1172), + [anon_sym_package] = ACTIONS(1172), + [anon_sym_import] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_public] = ACTIONS(1172), + [anon_sym_protected] = ACTIONS(1172), + [anon_sym_private] = ACTIONS(1172), + [anon_sym_abstract] = ACTIONS(1172), + [anon_sym_strictfp] = ACTIONS(1172), + [anon_sym_native] = ACTIONS(1172), + [anon_sym_transient] = ACTIONS(1172), + [anon_sym_volatile] = ACTIONS(1172), + [anon_sym_sealed] = ACTIONS(1172), + [anon_sym_non_DASHsealed] = ACTIONS(1170), + [anon_sym_record] = ACTIONS(1172), + [anon_sym_ATinterface] = ACTIONS(1170), + [anon_sym_interface] = ACTIONS(1172), + [anon_sym_byte] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), + [anon_sym_int] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_char] = ACTIONS(1172), + [anon_sym_float] = ACTIONS(1172), + [anon_sym_double] = ACTIONS(1172), + [sym_boolean_type] = ACTIONS(1172), + [sym_void_type] = ACTIONS(1172), + [sym_this] = ACTIONS(1172), + [sym_super] = ACTIONS(1172), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_decimal_integer_literal] = ACTIONS(1169), - [sym_hex_integer_literal] = ACTIONS(1169), - [sym_octal_integer_literal] = ACTIONS(1169), - [sym_binary_integer_literal] = ACTIONS(1167), - [sym_decimal_floating_point_literal] = ACTIONS(1167), - [sym_hex_floating_point_literal] = ACTIONS(1169), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [sym_character_literal] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [sym_null_literal] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_final] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(1169), - [anon_sym_class] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_assert] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_yield] = ACTIONS(1169), - [anon_sym_synchronized] = ACTIONS(1169), - [anon_sym_throw] = ACTIONS(1169), - [anon_sym_try] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(1169), - [anon_sym_open] = ACTIONS(1169), - [anon_sym_module] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_with] = ACTIONS(1169), - [anon_sym_package] = ACTIONS(1169), - [anon_sym_import] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_public] = ACTIONS(1169), - [anon_sym_protected] = ACTIONS(1169), - [anon_sym_private] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(1169), - [anon_sym_strictfp] = ACTIONS(1169), - [anon_sym_native] = ACTIONS(1169), - [anon_sym_transient] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_sealed] = ACTIONS(1169), - [anon_sym_non_DASHsealed] = ACTIONS(1167), - [anon_sym_record] = ACTIONS(1169), - [anon_sym_ATinterface] = ACTIONS(1167), - [anon_sym_interface] = ACTIONS(1169), - [anon_sym_byte] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_int] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_char] = ACTIONS(1169), - [anon_sym_float] = ACTIONS(1169), - [anon_sym_double] = ACTIONS(1169), - [sym_boolean_type] = ACTIONS(1169), - [sym_void_type] = ACTIONS(1169), - [sym_this] = ACTIONS(1169), - [sym_super] = ACTIONS(1169), + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [sym_decimal_integer_literal] = ACTIONS(1176), + [sym_hex_integer_literal] = ACTIONS(1176), + [sym_octal_integer_literal] = ACTIONS(1176), + [sym_binary_integer_literal] = ACTIONS(1174), + [sym_decimal_floating_point_literal] = ACTIONS(1174), + [sym_hex_floating_point_literal] = ACTIONS(1176), + [sym_true] = ACTIONS(1176), + [sym_false] = ACTIONS(1176), + [sym_character_literal] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1176), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [sym_null_literal] = ACTIONS(1176), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_final] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1174), + [anon_sym_PLUS_PLUS] = ACTIONS(1174), + [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1176), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_switch] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_assert] = ACTIONS(1176), + [anon_sym_do] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_yield] = ACTIONS(1176), + [anon_sym_synchronized] = ACTIONS(1176), + [anon_sym_throw] = ACTIONS(1176), + [anon_sym_try] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_else] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_AT] = ACTIONS(1176), + [anon_sym_open] = ACTIONS(1176), + [anon_sym_module] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_with] = ACTIONS(1176), + [anon_sym_package] = ACTIONS(1176), + [anon_sym_import] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_public] = ACTIONS(1176), + [anon_sym_protected] = ACTIONS(1176), + [anon_sym_private] = ACTIONS(1176), + [anon_sym_abstract] = ACTIONS(1176), + [anon_sym_strictfp] = ACTIONS(1176), + [anon_sym_native] = ACTIONS(1176), + [anon_sym_transient] = ACTIONS(1176), + [anon_sym_volatile] = ACTIONS(1176), + [anon_sym_sealed] = ACTIONS(1176), + [anon_sym_non_DASHsealed] = ACTIONS(1174), + [anon_sym_record] = ACTIONS(1176), + [anon_sym_ATinterface] = ACTIONS(1174), + [anon_sym_interface] = ACTIONS(1176), + [anon_sym_byte] = ACTIONS(1176), + [anon_sym_short] = ACTIONS(1176), + [anon_sym_int] = ACTIONS(1176), + [anon_sym_long] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_float] = ACTIONS(1176), + [anon_sym_double] = ACTIONS(1176), + [sym_boolean_type] = ACTIONS(1176), + [sym_void_type] = ACTIONS(1176), + [sym_this] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1173), - [sym_decimal_integer_literal] = ACTIONS(1173), - [sym_hex_integer_literal] = ACTIONS(1173), - [sym_octal_integer_literal] = ACTIONS(1173), - [sym_binary_integer_literal] = ACTIONS(1171), - [sym_decimal_floating_point_literal] = ACTIONS(1171), - [sym_hex_floating_point_literal] = ACTIONS(1173), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [sym_character_literal] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1173), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [sym_null_literal] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_final] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_class] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_assert] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_yield] = ACTIONS(1173), - [anon_sym_synchronized] = ACTIONS(1173), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_AT] = ACTIONS(1173), - [anon_sym_open] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_package] = ACTIONS(1173), - [anon_sym_import] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_abstract] = ACTIONS(1173), - [anon_sym_strictfp] = ACTIONS(1173), - [anon_sym_native] = ACTIONS(1173), - [anon_sym_transient] = ACTIONS(1173), - [anon_sym_volatile] = ACTIONS(1173), - [anon_sym_sealed] = ACTIONS(1173), - [anon_sym_non_DASHsealed] = ACTIONS(1171), - [anon_sym_record] = ACTIONS(1173), - [anon_sym_ATinterface] = ACTIONS(1171), - [anon_sym_interface] = ACTIONS(1173), - [anon_sym_byte] = ACTIONS(1173), - [anon_sym_short] = ACTIONS(1173), - [anon_sym_int] = ACTIONS(1173), - [anon_sym_long] = ACTIONS(1173), - [anon_sym_char] = ACTIONS(1173), - [anon_sym_float] = ACTIONS(1173), - [anon_sym_double] = ACTIONS(1173), - [sym_boolean_type] = ACTIONS(1173), - [sym_void_type] = ACTIONS(1173), - [sym_this] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1180), + [sym_decimal_integer_literal] = ACTIONS(1180), + [sym_hex_integer_literal] = ACTIONS(1180), + [sym_octal_integer_literal] = ACTIONS(1180), + [sym_binary_integer_literal] = ACTIONS(1178), + [sym_decimal_floating_point_literal] = ACTIONS(1178), + [sym_hex_floating_point_literal] = ACTIONS(1180), + [sym_true] = ACTIONS(1180), + [sym_false] = ACTIONS(1180), + [sym_character_literal] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1180), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [sym_null_literal] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1180), + [anon_sym_DASH] = ACTIONS(1180), + [anon_sym_final] = ACTIONS(1180), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_PLUS_PLUS] = ACTIONS(1178), + [anon_sym_DASH_DASH] = ACTIONS(1178), + [anon_sym_new] = ACTIONS(1180), + [anon_sym_class] = ACTIONS(1180), + [anon_sym_switch] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_case] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_assert] = ACTIONS(1180), + [anon_sym_do] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_yield] = ACTIONS(1180), + [anon_sym_synchronized] = ACTIONS(1180), + [anon_sym_throw] = ACTIONS(1180), + [anon_sym_try] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_else] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_AT] = ACTIONS(1180), + [anon_sym_open] = ACTIONS(1180), + [anon_sym_module] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_with] = ACTIONS(1180), + [anon_sym_package] = ACTIONS(1180), + [anon_sym_import] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [anon_sym_public] = ACTIONS(1180), + [anon_sym_protected] = ACTIONS(1180), + [anon_sym_private] = ACTIONS(1180), + [anon_sym_abstract] = ACTIONS(1180), + [anon_sym_strictfp] = ACTIONS(1180), + [anon_sym_native] = ACTIONS(1180), + [anon_sym_transient] = ACTIONS(1180), + [anon_sym_volatile] = ACTIONS(1180), + [anon_sym_sealed] = ACTIONS(1180), + [anon_sym_non_DASHsealed] = ACTIONS(1178), + [anon_sym_record] = ACTIONS(1180), + [anon_sym_ATinterface] = ACTIONS(1178), + [anon_sym_interface] = ACTIONS(1180), + [anon_sym_byte] = ACTIONS(1180), + [anon_sym_short] = ACTIONS(1180), + [anon_sym_int] = ACTIONS(1180), + [anon_sym_long] = ACTIONS(1180), + [anon_sym_char] = ACTIONS(1180), + [anon_sym_float] = ACTIONS(1180), + [anon_sym_double] = ACTIONS(1180), + [sym_boolean_type] = ACTIONS(1180), + [sym_void_type] = ACTIONS(1180), + [sym_this] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1175), - [sym_identifier] = ACTIONS(1177), - [sym_decimal_integer_literal] = ACTIONS(1177), - [sym_hex_integer_literal] = ACTIONS(1177), - [sym_octal_integer_literal] = ACTIONS(1177), - [sym_binary_integer_literal] = ACTIONS(1175), - [sym_decimal_floating_point_literal] = ACTIONS(1175), - [sym_hex_floating_point_literal] = ACTIONS(1177), - [sym_true] = ACTIONS(1177), - [sym_false] = ACTIONS(1177), - [sym_character_literal] = ACTIONS(1175), - [anon_sym_DQUOTE] = ACTIONS(1177), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1175), - [sym_null_literal] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_final] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(1177), - [anon_sym_class] = ACTIONS(1177), - [anon_sym_switch] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1177), - [anon_sym_default] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_assert] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_break] = ACTIONS(1177), - [anon_sym_continue] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_yield] = ACTIONS(1177), - [anon_sym_synchronized] = ACTIONS(1177), - [anon_sym_throw] = ACTIONS(1177), - [anon_sym_try] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1177), - [anon_sym_open] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_package] = ACTIONS(1177), - [anon_sym_import] = ACTIONS(1177), - [anon_sym_enum] = ACTIONS(1177), - [anon_sym_public] = ACTIONS(1177), - [anon_sym_protected] = ACTIONS(1177), - [anon_sym_private] = ACTIONS(1177), - [anon_sym_abstract] = ACTIONS(1177), - [anon_sym_strictfp] = ACTIONS(1177), - [anon_sym_native] = ACTIONS(1177), - [anon_sym_transient] = ACTIONS(1177), - [anon_sym_volatile] = ACTIONS(1177), - [anon_sym_sealed] = ACTIONS(1177), - [anon_sym_non_DASHsealed] = ACTIONS(1175), - [anon_sym_record] = ACTIONS(1177), - [anon_sym_ATinterface] = ACTIONS(1175), - [anon_sym_interface] = ACTIONS(1177), - [anon_sym_byte] = ACTIONS(1177), - [anon_sym_short] = ACTIONS(1177), - [anon_sym_int] = ACTIONS(1177), - [anon_sym_long] = ACTIONS(1177), - [anon_sym_char] = ACTIONS(1177), - [anon_sym_float] = ACTIONS(1177), - [anon_sym_double] = ACTIONS(1177), - [sym_boolean_type] = ACTIONS(1177), - [sym_void_type] = ACTIONS(1177), - [sym_this] = ACTIONS(1177), - [sym_super] = ACTIONS(1177), + [ts_builtin_sym_end] = ACTIONS(1182), + [sym_identifier] = ACTIONS(1184), + [sym_decimal_integer_literal] = ACTIONS(1184), + [sym_hex_integer_literal] = ACTIONS(1184), + [sym_octal_integer_literal] = ACTIONS(1184), + [sym_binary_integer_literal] = ACTIONS(1182), + [sym_decimal_floating_point_literal] = ACTIONS(1182), + [sym_hex_floating_point_literal] = ACTIONS(1184), + [sym_true] = ACTIONS(1184), + [sym_false] = ACTIONS(1184), + [sym_character_literal] = ACTIONS(1182), + [anon_sym_DQUOTE] = ACTIONS(1184), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [sym_null_literal] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_final] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_TILDE] = ACTIONS(1182), + [anon_sym_PLUS_PLUS] = ACTIONS(1182), + [anon_sym_DASH_DASH] = ACTIONS(1182), + [anon_sym_new] = ACTIONS(1184), + [anon_sym_class] = ACTIONS(1184), + [anon_sym_switch] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_case] = ACTIONS(1184), + [anon_sym_default] = ACTIONS(1184), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_assert] = ACTIONS(1184), + [anon_sym_do] = ACTIONS(1184), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1184), + [anon_sym_yield] = ACTIONS(1184), + [anon_sym_synchronized] = ACTIONS(1184), + [anon_sym_throw] = ACTIONS(1184), + [anon_sym_try] = ACTIONS(1184), + [anon_sym_if] = ACTIONS(1184), + [anon_sym_else] = ACTIONS(1184), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_AT] = ACTIONS(1184), + [anon_sym_open] = ACTIONS(1184), + [anon_sym_module] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_with] = ACTIONS(1184), + [anon_sym_package] = ACTIONS(1184), + [anon_sym_import] = ACTIONS(1184), + [anon_sym_enum] = ACTIONS(1184), + [anon_sym_public] = ACTIONS(1184), + [anon_sym_protected] = ACTIONS(1184), + [anon_sym_private] = ACTIONS(1184), + [anon_sym_abstract] = ACTIONS(1184), + [anon_sym_strictfp] = ACTIONS(1184), + [anon_sym_native] = ACTIONS(1184), + [anon_sym_transient] = ACTIONS(1184), + [anon_sym_volatile] = ACTIONS(1184), + [anon_sym_sealed] = ACTIONS(1184), + [anon_sym_non_DASHsealed] = ACTIONS(1182), + [anon_sym_record] = ACTIONS(1184), + [anon_sym_ATinterface] = ACTIONS(1182), + [anon_sym_interface] = ACTIONS(1184), + [anon_sym_byte] = ACTIONS(1184), + [anon_sym_short] = ACTIONS(1184), + [anon_sym_int] = ACTIONS(1184), + [anon_sym_long] = ACTIONS(1184), + [anon_sym_char] = ACTIONS(1184), + [anon_sym_float] = ACTIONS(1184), + [anon_sym_double] = ACTIONS(1184), + [sym_boolean_type] = ACTIONS(1184), + [sym_void_type] = ACTIONS(1184), + [sym_this] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1181), - [sym_decimal_integer_literal] = ACTIONS(1181), - [sym_hex_integer_literal] = ACTIONS(1181), - [sym_octal_integer_literal] = ACTIONS(1181), - [sym_binary_integer_literal] = ACTIONS(1179), - [sym_decimal_floating_point_literal] = ACTIONS(1179), - [sym_hex_floating_point_literal] = ACTIONS(1181), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [sym_character_literal] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [sym_null_literal] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_final] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_new] = ACTIONS(1181), - [anon_sym_class] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_yield] = ACTIONS(1181), - [anon_sym_synchronized] = ACTIONS(1181), - [anon_sym_throw] = ACTIONS(1181), - [anon_sym_try] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_AT] = ACTIONS(1181), - [anon_sym_open] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_with] = ACTIONS(1181), - [anon_sym_package] = ACTIONS(1181), - [anon_sym_import] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_abstract] = ACTIONS(1181), - [anon_sym_strictfp] = ACTIONS(1181), - [anon_sym_native] = ACTIONS(1181), - [anon_sym_transient] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_sealed] = ACTIONS(1181), - [anon_sym_non_DASHsealed] = ACTIONS(1179), - [anon_sym_record] = ACTIONS(1181), - [anon_sym_ATinterface] = ACTIONS(1179), - [anon_sym_interface] = ACTIONS(1181), - [anon_sym_byte] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [sym_boolean_type] = ACTIONS(1181), - [sym_void_type] = ACTIONS(1181), - [sym_this] = ACTIONS(1181), - [sym_super] = ACTIONS(1181), + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_identifier] = ACTIONS(1188), + [sym_decimal_integer_literal] = ACTIONS(1188), + [sym_hex_integer_literal] = ACTIONS(1188), + [sym_octal_integer_literal] = ACTIONS(1188), + [sym_binary_integer_literal] = ACTIONS(1186), + [sym_decimal_floating_point_literal] = ACTIONS(1186), + [sym_hex_floating_point_literal] = ACTIONS(1188), + [sym_true] = ACTIONS(1188), + [sym_false] = ACTIONS(1188), + [sym_character_literal] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(1188), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [sym_null_literal] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_final] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [anon_sym_DASH_DASH] = ACTIONS(1186), + [anon_sym_new] = ACTIONS(1188), + [anon_sym_class] = ACTIONS(1188), + [anon_sym_switch] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_case] = ACTIONS(1188), + [anon_sym_default] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_assert] = ACTIONS(1188), + [anon_sym_do] = ACTIONS(1188), + [anon_sym_while] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1188), + [anon_sym_continue] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1188), + [anon_sym_synchronized] = ACTIONS(1188), + [anon_sym_throw] = ACTIONS(1188), + [anon_sym_try] = ACTIONS(1188), + [anon_sym_if] = ACTIONS(1188), + [anon_sym_else] = ACTIONS(1188), + [anon_sym_for] = ACTIONS(1188), + [anon_sym_AT] = ACTIONS(1188), + [anon_sym_open] = ACTIONS(1188), + [anon_sym_module] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1188), + [anon_sym_with] = ACTIONS(1188), + [anon_sym_package] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(1188), + [anon_sym_public] = ACTIONS(1188), + [anon_sym_protected] = ACTIONS(1188), + [anon_sym_private] = ACTIONS(1188), + [anon_sym_abstract] = ACTIONS(1188), + [anon_sym_strictfp] = ACTIONS(1188), + [anon_sym_native] = ACTIONS(1188), + [anon_sym_transient] = ACTIONS(1188), + [anon_sym_volatile] = ACTIONS(1188), + [anon_sym_sealed] = ACTIONS(1188), + [anon_sym_non_DASHsealed] = ACTIONS(1186), + [anon_sym_record] = ACTIONS(1188), + [anon_sym_ATinterface] = ACTIONS(1186), + [anon_sym_interface] = ACTIONS(1188), + [anon_sym_byte] = ACTIONS(1188), + [anon_sym_short] = ACTIONS(1188), + [anon_sym_int] = ACTIONS(1188), + [anon_sym_long] = ACTIONS(1188), + [anon_sym_char] = ACTIONS(1188), + [anon_sym_float] = ACTIONS(1188), + [anon_sym_double] = ACTIONS(1188), + [sym_boolean_type] = ACTIONS(1188), + [sym_void_type] = ACTIONS(1188), + [sym_this] = ACTIONS(1188), + [sym_super] = ACTIONS(1188), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [388] = { - [sym_switch_label] = STATE(1322), - [aux_sym_switch_block_statement_group_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1183), - [sym_decimal_integer_literal] = ACTIONS(1183), - [sym_hex_integer_literal] = ACTIONS(1183), - [sym_octal_integer_literal] = ACTIONS(1183), - [sym_binary_integer_literal] = ACTIONS(1185), - [sym_decimal_floating_point_literal] = ACTIONS(1185), - [sym_hex_floating_point_literal] = ACTIONS(1183), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [sym_character_literal] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_null_literal] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_assert] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_synchronized] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1183), - [anon_sym_open] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_strictfp] = ACTIONS(1183), - [anon_sym_native] = ACTIONS(1183), - [anon_sym_transient] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_non_DASHsealed] = ACTIONS(1185), - [anon_sym_record] = ACTIONS(1183), - [anon_sym_ATinterface] = ACTIONS(1185), - [anon_sym_interface] = ACTIONS(1183), - [anon_sym_byte] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_int] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_char] = ACTIONS(1183), - [anon_sym_float] = ACTIONS(1183), - [anon_sym_double] = ACTIONS(1183), - [sym_boolean_type] = ACTIONS(1183), - [sym_void_type] = ACTIONS(1183), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1192), + [sym_decimal_integer_literal] = ACTIONS(1192), + [sym_hex_integer_literal] = ACTIONS(1192), + [sym_octal_integer_literal] = ACTIONS(1192), + [sym_binary_integer_literal] = ACTIONS(1190), + [sym_decimal_floating_point_literal] = ACTIONS(1190), + [sym_hex_floating_point_literal] = ACTIONS(1192), + [sym_true] = ACTIONS(1192), + [sym_false] = ACTIONS(1192), + [sym_character_literal] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [sym_null_literal] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_final] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_TILDE] = ACTIONS(1190), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1192), + [anon_sym_class] = ACTIONS(1192), + [anon_sym_switch] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_assert] = ACTIONS(1192), + [anon_sym_do] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_yield] = ACTIONS(1192), + [anon_sym_synchronized] = ACTIONS(1192), + [anon_sym_throw] = ACTIONS(1192), + [anon_sym_try] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_else] = ACTIONS(1192), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_AT] = ACTIONS(1192), + [anon_sym_open] = ACTIONS(1192), + [anon_sym_module] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1192), + [anon_sym_with] = ACTIONS(1192), + [anon_sym_package] = ACTIONS(1192), + [anon_sym_import] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1192), + [anon_sym_public] = ACTIONS(1192), + [anon_sym_protected] = ACTIONS(1192), + [anon_sym_private] = ACTIONS(1192), + [anon_sym_abstract] = ACTIONS(1192), + [anon_sym_strictfp] = ACTIONS(1192), + [anon_sym_native] = ACTIONS(1192), + [anon_sym_transient] = ACTIONS(1192), + [anon_sym_volatile] = ACTIONS(1192), + [anon_sym_sealed] = ACTIONS(1192), + [anon_sym_non_DASHsealed] = ACTIONS(1190), + [anon_sym_record] = ACTIONS(1192), + [anon_sym_ATinterface] = ACTIONS(1190), + [anon_sym_interface] = ACTIONS(1192), + [anon_sym_byte] = ACTIONS(1192), + [anon_sym_short] = ACTIONS(1192), + [anon_sym_int] = ACTIONS(1192), + [anon_sym_long] = ACTIONS(1192), + [anon_sym_char] = ACTIONS(1192), + [anon_sym_float] = ACTIONS(1192), + [anon_sym_double] = ACTIONS(1192), + [sym_boolean_type] = ACTIONS(1192), + [sym_void_type] = ACTIONS(1192), + [sym_this] = ACTIONS(1192), + [sym_super] = ACTIONS(1192), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [389] = { - [sym_identifier] = ACTIONS(1193), - [sym_decimal_integer_literal] = ACTIONS(1193), - [sym_hex_integer_literal] = ACTIONS(1193), - [sym_octal_integer_literal] = ACTIONS(1193), - [sym_binary_integer_literal] = ACTIONS(1195), - [sym_decimal_floating_point_literal] = ACTIONS(1195), - [sym_hex_floating_point_literal] = ACTIONS(1193), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [sym_character_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1193), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_null_literal] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_final] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_assert] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_yield] = ACTIONS(1193), - [anon_sym_synchronized] = ACTIONS(1193), - [anon_sym_throw] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_AT] = ACTIONS(1193), - [anon_sym_open] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_with] = ACTIONS(1193), - [anon_sym_package] = ACTIONS(1193), - [anon_sym_import] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(1193), - [anon_sym_protected] = ACTIONS(1193), - [anon_sym_private] = ACTIONS(1193), - [anon_sym_abstract] = ACTIONS(1193), - [anon_sym_strictfp] = ACTIONS(1193), - [anon_sym_native] = ACTIONS(1193), - [anon_sym_transient] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_sealed] = ACTIONS(1193), - [anon_sym_non_DASHsealed] = ACTIONS(1195), - [anon_sym_record] = ACTIONS(1193), - [anon_sym_ATinterface] = ACTIONS(1195), - [anon_sym_interface] = ACTIONS(1193), - [anon_sym_byte] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_int] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_char] = ACTIONS(1193), - [anon_sym_float] = ACTIONS(1193), - [anon_sym_double] = ACTIONS(1193), - [sym_boolean_type] = ACTIONS(1193), - [sym_void_type] = ACTIONS(1193), - [sym_this] = ACTIONS(1193), - [sym_super] = ACTIONS(1193), + [sym_switch_label] = STATE(1373), + [aux_sym_switch_block_statement_group_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1194), + [sym_decimal_integer_literal] = ACTIONS(1194), + [sym_hex_integer_literal] = ACTIONS(1194), + [sym_octal_integer_literal] = ACTIONS(1194), + [sym_binary_integer_literal] = ACTIONS(1196), + [sym_decimal_floating_point_literal] = ACTIONS(1196), + [sym_hex_floating_point_literal] = ACTIONS(1194), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [sym_character_literal] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1194), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [sym_null_literal] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_final] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_class] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_assert] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_synchronized] = ACTIONS(1194), + [anon_sym_throw] = ACTIONS(1194), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_AT] = ACTIONS(1194), + [anon_sym_open] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), + [anon_sym_package] = ACTIONS(1194), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_public] = ACTIONS(1194), + [anon_sym_protected] = ACTIONS(1194), + [anon_sym_private] = ACTIONS(1194), + [anon_sym_abstract] = ACTIONS(1194), + [anon_sym_strictfp] = ACTIONS(1194), + [anon_sym_native] = ACTIONS(1194), + [anon_sym_transient] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_sealed] = ACTIONS(1194), + [anon_sym_non_DASHsealed] = ACTIONS(1196), + [anon_sym_record] = ACTIONS(1194), + [anon_sym_ATinterface] = ACTIONS(1196), + [anon_sym_interface] = ACTIONS(1194), + [anon_sym_byte] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_int] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_char] = ACTIONS(1194), + [anon_sym_float] = ACTIONS(1194), + [anon_sym_double] = ACTIONS(1194), + [sym_boolean_type] = ACTIONS(1194), + [sym_void_type] = ACTIONS(1194), + [sym_this] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1201), - [sym_decimal_integer_literal] = ACTIONS(1201), - [sym_hex_integer_literal] = ACTIONS(1201), - [sym_octal_integer_literal] = ACTIONS(1201), - [sym_binary_integer_literal] = ACTIONS(1199), - [sym_decimal_floating_point_literal] = ACTIONS(1199), - [sym_hex_floating_point_literal] = ACTIONS(1201), - [sym_true] = ACTIONS(1201), - [sym_false] = ACTIONS(1201), - [sym_character_literal] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_null_literal] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_final] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_new] = ACTIONS(1201), - [anon_sym_class] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_assert] = ACTIONS(1201), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_break] = ACTIONS(1201), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_return] = ACTIONS(1201), - [anon_sym_yield] = ACTIONS(1201), - [anon_sym_synchronized] = ACTIONS(1201), - [anon_sym_throw] = ACTIONS(1201), - [anon_sym_try] = ACTIONS(1201), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_open] = ACTIONS(1201), - [anon_sym_module] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1201), - [anon_sym_package] = ACTIONS(1201), - [anon_sym_import] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1201), - [anon_sym_public] = ACTIONS(1201), - [anon_sym_protected] = ACTIONS(1201), - [anon_sym_private] = ACTIONS(1201), - [anon_sym_abstract] = ACTIONS(1201), - [anon_sym_strictfp] = ACTIONS(1201), - [anon_sym_native] = ACTIONS(1201), - [anon_sym_transient] = ACTIONS(1201), - [anon_sym_volatile] = ACTIONS(1201), - [anon_sym_sealed] = ACTIONS(1201), - [anon_sym_non_DASHsealed] = ACTIONS(1199), - [anon_sym_record] = ACTIONS(1201), - [anon_sym_ATinterface] = ACTIONS(1199), - [anon_sym_interface] = ACTIONS(1201), - [anon_sym_byte] = ACTIONS(1201), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_int] = ACTIONS(1201), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_char] = ACTIONS(1201), - [anon_sym_float] = ACTIONS(1201), - [anon_sym_double] = ACTIONS(1201), - [sym_boolean_type] = ACTIONS(1201), - [sym_void_type] = ACTIONS(1201), - [sym_this] = ACTIONS(1201), - [sym_super] = ACTIONS(1201), + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [sym_decimal_integer_literal] = ACTIONS(1206), + [sym_hex_integer_literal] = ACTIONS(1206), + [sym_octal_integer_literal] = ACTIONS(1206), + [sym_binary_integer_literal] = ACTIONS(1204), + [sym_decimal_floating_point_literal] = ACTIONS(1204), + [sym_hex_floating_point_literal] = ACTIONS(1206), + [sym_true] = ACTIONS(1206), + [sym_false] = ACTIONS(1206), + [sym_character_literal] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [sym_null_literal] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_final] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_new] = ACTIONS(1206), + [anon_sym_class] = ACTIONS(1206), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym_assert] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_synchronized] = ACTIONS(1206), + [anon_sym_throw] = ACTIONS(1206), + [anon_sym_try] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_open] = ACTIONS(1206), + [anon_sym_module] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_with] = ACTIONS(1206), + [anon_sym_package] = ACTIONS(1206), + [anon_sym_import] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_public] = ACTIONS(1206), + [anon_sym_protected] = ACTIONS(1206), + [anon_sym_private] = ACTIONS(1206), + [anon_sym_abstract] = ACTIONS(1206), + [anon_sym_strictfp] = ACTIONS(1206), + [anon_sym_native] = ACTIONS(1206), + [anon_sym_transient] = ACTIONS(1206), + [anon_sym_volatile] = ACTIONS(1206), + [anon_sym_sealed] = ACTIONS(1206), + [anon_sym_non_DASHsealed] = ACTIONS(1204), + [anon_sym_record] = ACTIONS(1206), + [anon_sym_ATinterface] = ACTIONS(1204), + [anon_sym_interface] = ACTIONS(1206), + [anon_sym_byte] = ACTIONS(1206), + [anon_sym_short] = ACTIONS(1206), + [anon_sym_int] = ACTIONS(1206), + [anon_sym_long] = ACTIONS(1206), + [anon_sym_char] = ACTIONS(1206), + [anon_sym_float] = ACTIONS(1206), + [anon_sym_double] = ACTIONS(1206), + [sym_boolean_type] = ACTIONS(1206), + [sym_void_type] = ACTIONS(1206), + [sym_this] = ACTIONS(1206), + [sym_super] = ACTIONS(1206), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_identifier] = ACTIONS(1205), - [sym_decimal_integer_literal] = ACTIONS(1205), - [sym_hex_integer_literal] = ACTIONS(1205), - [sym_octal_integer_literal] = ACTIONS(1205), - [sym_binary_integer_literal] = ACTIONS(1203), - [sym_decimal_floating_point_literal] = ACTIONS(1203), - [sym_hex_floating_point_literal] = ACTIONS(1205), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [sym_character_literal] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [sym_null_literal] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_final] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_new] = ACTIONS(1205), - [anon_sym_class] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_assert] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_synchronized] = ACTIONS(1205), - [anon_sym_throw] = ACTIONS(1205), - [anon_sym_try] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1205), - [anon_sym_open] = ACTIONS(1205), - [anon_sym_module] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_with] = ACTIONS(1205), - [anon_sym_package] = ACTIONS(1205), - [anon_sym_import] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_public] = ACTIONS(1205), - [anon_sym_protected] = ACTIONS(1205), - [anon_sym_private] = ACTIONS(1205), - [anon_sym_abstract] = ACTIONS(1205), - [anon_sym_strictfp] = ACTIONS(1205), - [anon_sym_native] = ACTIONS(1205), - [anon_sym_transient] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_sealed] = ACTIONS(1205), - [anon_sym_non_DASHsealed] = ACTIONS(1203), - [anon_sym_record] = ACTIONS(1205), - [anon_sym_ATinterface] = ACTIONS(1203), - [anon_sym_interface] = ACTIONS(1205), - [anon_sym_byte] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_int] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_char] = ACTIONS(1205), - [anon_sym_float] = ACTIONS(1205), - [anon_sym_double] = ACTIONS(1205), - [sym_boolean_type] = ACTIONS(1205), - [sym_void_type] = ACTIONS(1205), - [sym_this] = ACTIONS(1205), - [sym_super] = ACTIONS(1205), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [sym_decimal_integer_literal] = ACTIONS(1210), + [sym_hex_integer_literal] = ACTIONS(1210), + [sym_octal_integer_literal] = ACTIONS(1210), + [sym_binary_integer_literal] = ACTIONS(1208), + [sym_decimal_floating_point_literal] = ACTIONS(1208), + [sym_hex_floating_point_literal] = ACTIONS(1210), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [sym_character_literal] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1208), + [sym_null_literal] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_final] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_new] = ACTIONS(1210), + [anon_sym_class] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_synchronized] = ACTIONS(1210), + [anon_sym_throw] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_AT] = ACTIONS(1210), + [anon_sym_open] = ACTIONS(1210), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_with] = ACTIONS(1210), + [anon_sym_package] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_protected] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_abstract] = ACTIONS(1210), + [anon_sym_strictfp] = ACTIONS(1210), + [anon_sym_native] = ACTIONS(1210), + [anon_sym_transient] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_sealed] = ACTIONS(1210), + [anon_sym_non_DASHsealed] = ACTIONS(1208), + [anon_sym_record] = ACTIONS(1210), + [anon_sym_ATinterface] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1210), + [anon_sym_byte] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_int] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_char] = ACTIONS(1210), + [anon_sym_float] = ACTIONS(1210), + [anon_sym_double] = ACTIONS(1210), + [sym_boolean_type] = ACTIONS(1210), + [sym_void_type] = ACTIONS(1210), + [sym_this] = ACTIONS(1210), + [sym_super] = ACTIONS(1210), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1209), - [sym_decimal_integer_literal] = ACTIONS(1209), - [sym_hex_integer_literal] = ACTIONS(1209), - [sym_octal_integer_literal] = ACTIONS(1209), - [sym_binary_integer_literal] = ACTIONS(1207), - [sym_decimal_floating_point_literal] = ACTIONS(1207), - [sym_hex_floating_point_literal] = ACTIONS(1209), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [sym_character_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [sym_null_literal] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_final] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_new] = ACTIONS(1209), - [anon_sym_class] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_assert] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_yield] = ACTIONS(1209), - [anon_sym_synchronized] = ACTIONS(1209), - [anon_sym_throw] = ACTIONS(1209), - [anon_sym_try] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_AT] = ACTIONS(1209), - [anon_sym_open] = ACTIONS(1209), - [anon_sym_module] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_with] = ACTIONS(1209), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_import] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_public] = ACTIONS(1209), - [anon_sym_protected] = ACTIONS(1209), - [anon_sym_private] = ACTIONS(1209), - [anon_sym_abstract] = ACTIONS(1209), - [anon_sym_strictfp] = ACTIONS(1209), - [anon_sym_native] = ACTIONS(1209), - [anon_sym_transient] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_sealed] = ACTIONS(1209), - [anon_sym_non_DASHsealed] = ACTIONS(1207), - [anon_sym_record] = ACTIONS(1209), - [anon_sym_ATinterface] = ACTIONS(1207), - [anon_sym_interface] = ACTIONS(1209), - [anon_sym_byte] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [anon_sym_int] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [anon_sym_float] = ACTIONS(1209), - [anon_sym_double] = ACTIONS(1209), - [sym_boolean_type] = ACTIONS(1209), - [sym_void_type] = ACTIONS(1209), - [sym_this] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1210), + [sym_decimal_integer_literal] = ACTIONS(1210), + [sym_hex_integer_literal] = ACTIONS(1210), + [sym_octal_integer_literal] = ACTIONS(1210), + [sym_binary_integer_literal] = ACTIONS(1208), + [sym_decimal_floating_point_literal] = ACTIONS(1208), + [sym_hex_floating_point_literal] = ACTIONS(1210), + [sym_true] = ACTIONS(1210), + [sym_false] = ACTIONS(1210), + [sym_character_literal] = ACTIONS(1208), + [anon_sym_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [sym_null_literal] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_final] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_TILDE] = ACTIONS(1208), + [anon_sym_PLUS_PLUS] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1208), + [anon_sym_new] = ACTIONS(1210), + [anon_sym_class] = ACTIONS(1210), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_assert] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_synchronized] = ACTIONS(1210), + [anon_sym_throw] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_AT] = ACTIONS(1210), + [anon_sym_open] = ACTIONS(1210), + [anon_sym_module] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_with] = ACTIONS(1210), + [anon_sym_package] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_protected] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_abstract] = ACTIONS(1210), + [anon_sym_strictfp] = ACTIONS(1210), + [anon_sym_native] = ACTIONS(1210), + [anon_sym_transient] = ACTIONS(1210), + [anon_sym_volatile] = ACTIONS(1210), + [anon_sym_sealed] = ACTIONS(1210), + [anon_sym_non_DASHsealed] = ACTIONS(1208), + [anon_sym_record] = ACTIONS(1210), + [anon_sym_ATinterface] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1210), + [anon_sym_byte] = ACTIONS(1210), + [anon_sym_short] = ACTIONS(1210), + [anon_sym_int] = ACTIONS(1210), + [anon_sym_long] = ACTIONS(1210), + [anon_sym_char] = ACTIONS(1210), + [anon_sym_float] = ACTIONS(1210), + [anon_sym_double] = ACTIONS(1210), + [sym_boolean_type] = ACTIONS(1210), + [sym_void_type] = ACTIONS(1210), + [sym_this] = ACTIONS(1210), + [sym_super] = ACTIONS(1210), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1193), - [sym_decimal_integer_literal] = ACTIONS(1193), - [sym_hex_integer_literal] = ACTIONS(1193), - [sym_octal_integer_literal] = ACTIONS(1193), - [sym_binary_integer_literal] = ACTIONS(1195), - [sym_decimal_floating_point_literal] = ACTIONS(1195), - [sym_hex_floating_point_literal] = ACTIONS(1193), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [sym_character_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1193), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1195), - [sym_null_literal] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_final] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_assert] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_yield] = ACTIONS(1193), - [anon_sym_synchronized] = ACTIONS(1193), - [anon_sym_throw] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_AT] = ACTIONS(1193), - [anon_sym_open] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_with] = ACTIONS(1193), - [anon_sym_package] = ACTIONS(1193), - [anon_sym_import] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(1193), - [anon_sym_protected] = ACTIONS(1193), - [anon_sym_private] = ACTIONS(1193), - [anon_sym_abstract] = ACTIONS(1193), - [anon_sym_strictfp] = ACTIONS(1193), - [anon_sym_native] = ACTIONS(1193), - [anon_sym_transient] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_sealed] = ACTIONS(1193), - [anon_sym_non_DASHsealed] = ACTIONS(1195), - [anon_sym_record] = ACTIONS(1193), - [anon_sym_ATinterface] = ACTIONS(1195), - [anon_sym_interface] = ACTIONS(1193), - [anon_sym_byte] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_int] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_char] = ACTIONS(1193), - [anon_sym_float] = ACTIONS(1193), - [anon_sym_double] = ACTIONS(1193), - [sym_boolean_type] = ACTIONS(1193), - [sym_void_type] = ACTIONS(1193), - [sym_this] = ACTIONS(1193), - [sym_super] = ACTIONS(1193), + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [sym_decimal_integer_literal] = ACTIONS(1218), + [sym_hex_integer_literal] = ACTIONS(1218), + [sym_octal_integer_literal] = ACTIONS(1218), + [sym_binary_integer_literal] = ACTIONS(1216), + [sym_decimal_floating_point_literal] = ACTIONS(1216), + [sym_hex_floating_point_literal] = ACTIONS(1218), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [sym_character_literal] = ACTIONS(1216), + [anon_sym_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [sym_null_literal] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_final] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1216), + [anon_sym_PLUS_PLUS] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1216), + [anon_sym_new] = ACTIONS(1218), + [anon_sym_class] = ACTIONS(1218), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_assert] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_yield] = ACTIONS(1218), + [anon_sym_synchronized] = ACTIONS(1218), + [anon_sym_throw] = ACTIONS(1218), + [anon_sym_try] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), + [anon_sym_open] = ACTIONS(1218), + [anon_sym_module] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_with] = ACTIONS(1218), + [anon_sym_package] = ACTIONS(1218), + [anon_sym_import] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_public] = ACTIONS(1218), + [anon_sym_protected] = ACTIONS(1218), + [anon_sym_private] = ACTIONS(1218), + [anon_sym_abstract] = ACTIONS(1218), + [anon_sym_strictfp] = ACTIONS(1218), + [anon_sym_native] = ACTIONS(1218), + [anon_sym_transient] = ACTIONS(1218), + [anon_sym_volatile] = ACTIONS(1218), + [anon_sym_sealed] = ACTIONS(1218), + [anon_sym_non_DASHsealed] = ACTIONS(1216), + [anon_sym_record] = ACTIONS(1218), + [anon_sym_ATinterface] = ACTIONS(1216), + [anon_sym_interface] = ACTIONS(1218), + [anon_sym_byte] = ACTIONS(1218), + [anon_sym_short] = ACTIONS(1218), + [anon_sym_int] = ACTIONS(1218), + [anon_sym_long] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_float] = ACTIONS(1218), + [anon_sym_double] = ACTIONS(1218), + [sym_boolean_type] = ACTIONS(1218), + [sym_void_type] = ACTIONS(1218), + [sym_this] = ACTIONS(1218), + [sym_super] = ACTIONS(1218), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [sym_decimal_integer_literal] = ACTIONS(1215), - [sym_hex_integer_literal] = ACTIONS(1215), - [sym_octal_integer_literal] = ACTIONS(1215), - [sym_binary_integer_literal] = ACTIONS(1213), - [sym_decimal_floating_point_literal] = ACTIONS(1213), - [sym_hex_floating_point_literal] = ACTIONS(1215), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [sym_character_literal] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [sym_null_literal] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_final] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_new] = ACTIONS(1215), - [anon_sym_class] = ACTIONS(1215), - [anon_sym_switch] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_assert] = ACTIONS(1215), - [anon_sym_do] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_yield] = ACTIONS(1215), - [anon_sym_synchronized] = ACTIONS(1215), - [anon_sym_throw] = ACTIONS(1215), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1215), - [anon_sym_open] = ACTIONS(1215), - [anon_sym_module] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1215), - [anon_sym_import] = ACTIONS(1215), - [anon_sym_enum] = ACTIONS(1215), - [anon_sym_public] = ACTIONS(1215), - [anon_sym_protected] = ACTIONS(1215), - [anon_sym_private] = ACTIONS(1215), - [anon_sym_abstract] = ACTIONS(1215), - [anon_sym_strictfp] = ACTIONS(1215), - [anon_sym_native] = ACTIONS(1215), - [anon_sym_transient] = ACTIONS(1215), - [anon_sym_volatile] = ACTIONS(1215), - [anon_sym_sealed] = ACTIONS(1215), - [anon_sym_non_DASHsealed] = ACTIONS(1213), - [anon_sym_record] = ACTIONS(1215), - [anon_sym_ATinterface] = ACTIONS(1213), - [anon_sym_interface] = ACTIONS(1215), - [anon_sym_byte] = ACTIONS(1215), - [anon_sym_short] = ACTIONS(1215), - [anon_sym_int] = ACTIONS(1215), - [anon_sym_long] = ACTIONS(1215), - [anon_sym_char] = ACTIONS(1215), - [anon_sym_float] = ACTIONS(1215), - [anon_sym_double] = ACTIONS(1215), - [sym_boolean_type] = ACTIONS(1215), - [sym_void_type] = ACTIONS(1215), - [sym_this] = ACTIONS(1215), - [sym_super] = ACTIONS(1215), + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1222), + [sym_decimal_integer_literal] = ACTIONS(1222), + [sym_hex_integer_literal] = ACTIONS(1222), + [sym_octal_integer_literal] = ACTIONS(1222), + [sym_binary_integer_literal] = ACTIONS(1220), + [sym_decimal_floating_point_literal] = ACTIONS(1220), + [sym_hex_floating_point_literal] = ACTIONS(1222), + [sym_true] = ACTIONS(1222), + [sym_false] = ACTIONS(1222), + [sym_character_literal] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [sym_null_literal] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_final] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1220), + [anon_sym_PLUS_PLUS] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1220), + [anon_sym_new] = ACTIONS(1222), + [anon_sym_class] = ACTIONS(1222), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym_assert] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(1222), + [anon_sym_synchronized] = ACTIONS(1222), + [anon_sym_throw] = ACTIONS(1222), + [anon_sym_try] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_AT] = ACTIONS(1222), + [anon_sym_open] = ACTIONS(1222), + [anon_sym_module] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_with] = ACTIONS(1222), + [anon_sym_package] = ACTIONS(1222), + [anon_sym_import] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_public] = ACTIONS(1222), + [anon_sym_protected] = ACTIONS(1222), + [anon_sym_private] = ACTIONS(1222), + [anon_sym_abstract] = ACTIONS(1222), + [anon_sym_strictfp] = ACTIONS(1222), + [anon_sym_native] = ACTIONS(1222), + [anon_sym_transient] = ACTIONS(1222), + [anon_sym_volatile] = ACTIONS(1222), + [anon_sym_sealed] = ACTIONS(1222), + [anon_sym_non_DASHsealed] = ACTIONS(1220), + [anon_sym_record] = ACTIONS(1222), + [anon_sym_ATinterface] = ACTIONS(1220), + [anon_sym_interface] = ACTIONS(1222), + [anon_sym_byte] = ACTIONS(1222), + [anon_sym_short] = ACTIONS(1222), + [anon_sym_int] = ACTIONS(1222), + [anon_sym_long] = ACTIONS(1222), + [anon_sym_char] = ACTIONS(1222), + [anon_sym_float] = ACTIONS(1222), + [anon_sym_double] = ACTIONS(1222), + [sym_boolean_type] = ACTIONS(1222), + [sym_void_type] = ACTIONS(1222), + [sym_this] = ACTIONS(1222), + [sym_super] = ACTIONS(1222), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [395] = { - [sym_identifier] = ACTIONS(1183), - [sym_decimal_integer_literal] = ACTIONS(1183), - [sym_hex_integer_literal] = ACTIONS(1183), - [sym_octal_integer_literal] = ACTIONS(1183), - [sym_binary_integer_literal] = ACTIONS(1185), - [sym_decimal_floating_point_literal] = ACTIONS(1185), - [sym_hex_floating_point_literal] = ACTIONS(1183), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [sym_character_literal] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_null_literal] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_assert] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_synchronized] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1183), - [anon_sym_open] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_strictfp] = ACTIONS(1183), - [anon_sym_native] = ACTIONS(1183), - [anon_sym_transient] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_non_DASHsealed] = ACTIONS(1185), - [anon_sym_record] = ACTIONS(1183), - [anon_sym_ATinterface] = ACTIONS(1185), - [anon_sym_interface] = ACTIONS(1183), - [anon_sym_byte] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_int] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_char] = ACTIONS(1183), - [anon_sym_float] = ACTIONS(1183), - [anon_sym_double] = ACTIONS(1183), - [sym_boolean_type] = ACTIONS(1183), - [sym_void_type] = ACTIONS(1183), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [sym_decimal_integer_literal] = ACTIONS(1226), + [sym_hex_integer_literal] = ACTIONS(1226), + [sym_octal_integer_literal] = ACTIONS(1226), + [sym_binary_integer_literal] = ACTIONS(1224), + [sym_decimal_floating_point_literal] = ACTIONS(1224), + [sym_hex_floating_point_literal] = ACTIONS(1226), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_character_literal] = ACTIONS(1224), + [anon_sym_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [sym_null_literal] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_final] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1224), + [anon_sym_PLUS_PLUS] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1224), + [anon_sym_new] = ACTIONS(1226), + [anon_sym_class] = ACTIONS(1226), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_synchronized] = ACTIONS(1226), + [anon_sym_throw] = ACTIONS(1226), + [anon_sym_try] = ACTIONS(1226), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_open] = ACTIONS(1226), + [anon_sym_module] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_with] = ACTIONS(1226), + [anon_sym_package] = ACTIONS(1226), + [anon_sym_import] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_public] = ACTIONS(1226), + [anon_sym_protected] = ACTIONS(1226), + [anon_sym_private] = ACTIONS(1226), + [anon_sym_abstract] = ACTIONS(1226), + [anon_sym_strictfp] = ACTIONS(1226), + [anon_sym_native] = ACTIONS(1226), + [anon_sym_transient] = ACTIONS(1226), + [anon_sym_volatile] = ACTIONS(1226), + [anon_sym_sealed] = ACTIONS(1226), + [anon_sym_non_DASHsealed] = ACTIONS(1224), + [anon_sym_record] = ACTIONS(1226), + [anon_sym_ATinterface] = ACTIONS(1224), + [anon_sym_interface] = ACTIONS(1226), + [anon_sym_byte] = ACTIONS(1226), + [anon_sym_short] = ACTIONS(1226), + [anon_sym_int] = ACTIONS(1226), + [anon_sym_long] = ACTIONS(1226), + [anon_sym_char] = ACTIONS(1226), + [anon_sym_float] = ACTIONS(1226), + [anon_sym_double] = ACTIONS(1226), + [sym_boolean_type] = ACTIONS(1226), + [sym_void_type] = ACTIONS(1226), + [sym_this] = ACTIONS(1226), + [sym_super] = ACTIONS(1226), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [396] = { - [sym_identifier] = ACTIONS(1217), - [sym_decimal_integer_literal] = ACTIONS(1217), - [sym_hex_integer_literal] = ACTIONS(1217), - [sym_octal_integer_literal] = ACTIONS(1217), - [sym_binary_integer_literal] = ACTIONS(1219), - [sym_decimal_floating_point_literal] = ACTIONS(1219), - [sym_hex_floating_point_literal] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_character_literal] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [sym_null_literal] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_final] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_new] = ACTIONS(1217), - [anon_sym_class] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_assert] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1217), - [anon_sym_synchronized] = ACTIONS(1217), - [anon_sym_throw] = ACTIONS(1217), - [anon_sym_try] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_AT] = ACTIONS(1217), - [anon_sym_open] = ACTIONS(1217), - [anon_sym_module] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_package] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_public] = ACTIONS(1217), - [anon_sym_protected] = ACTIONS(1217), - [anon_sym_private] = ACTIONS(1217), - [anon_sym_abstract] = ACTIONS(1217), - [anon_sym_strictfp] = ACTIONS(1217), - [anon_sym_native] = ACTIONS(1217), - [anon_sym_transient] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_sealed] = ACTIONS(1217), - [anon_sym_non_DASHsealed] = ACTIONS(1219), - [anon_sym_record] = ACTIONS(1217), - [anon_sym_ATinterface] = ACTIONS(1219), - [anon_sym_interface] = ACTIONS(1217), - [anon_sym_byte] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_int] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_char] = ACTIONS(1217), - [anon_sym_float] = ACTIONS(1217), - [anon_sym_double] = ACTIONS(1217), - [sym_boolean_type] = ACTIONS(1217), - [sym_void_type] = ACTIONS(1217), - [sym_this] = ACTIONS(1217), - [sym_super] = ACTIONS(1217), + [sym_identifier] = ACTIONS(1194), + [sym_decimal_integer_literal] = ACTIONS(1194), + [sym_hex_integer_literal] = ACTIONS(1194), + [sym_octal_integer_literal] = ACTIONS(1194), + [sym_binary_integer_literal] = ACTIONS(1196), + [sym_decimal_floating_point_literal] = ACTIONS(1196), + [sym_hex_floating_point_literal] = ACTIONS(1194), + [sym_true] = ACTIONS(1194), + [sym_false] = ACTIONS(1194), + [sym_character_literal] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1194), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [sym_null_literal] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_final] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1196), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1196), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_class] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_assert] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_synchronized] = ACTIONS(1194), + [anon_sym_throw] = ACTIONS(1194), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_AT] = ACTIONS(1194), + [anon_sym_open] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_with] = ACTIONS(1194), + [anon_sym_package] = ACTIONS(1194), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_public] = ACTIONS(1194), + [anon_sym_protected] = ACTIONS(1194), + [anon_sym_private] = ACTIONS(1194), + [anon_sym_abstract] = ACTIONS(1194), + [anon_sym_strictfp] = ACTIONS(1194), + [anon_sym_native] = ACTIONS(1194), + [anon_sym_transient] = ACTIONS(1194), + [anon_sym_volatile] = ACTIONS(1194), + [anon_sym_sealed] = ACTIONS(1194), + [anon_sym_non_DASHsealed] = ACTIONS(1196), + [anon_sym_record] = ACTIONS(1194), + [anon_sym_ATinterface] = ACTIONS(1196), + [anon_sym_interface] = ACTIONS(1194), + [anon_sym_byte] = ACTIONS(1194), + [anon_sym_short] = ACTIONS(1194), + [anon_sym_int] = ACTIONS(1194), + [anon_sym_long] = ACTIONS(1194), + [anon_sym_char] = ACTIONS(1194), + [anon_sym_float] = ACTIONS(1194), + [anon_sym_double] = ACTIONS(1194), + [sym_boolean_type] = ACTIONS(1194), + [sym_void_type] = ACTIONS(1194), + [sym_this] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [397] = { - [sym_identifier] = ACTIONS(1221), - [sym_decimal_integer_literal] = ACTIONS(1221), - [sym_hex_integer_literal] = ACTIONS(1221), - [sym_octal_integer_literal] = ACTIONS(1221), - [sym_binary_integer_literal] = ACTIONS(1223), - [sym_decimal_floating_point_literal] = ACTIONS(1223), - [sym_hex_floating_point_literal] = ACTIONS(1221), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [sym_character_literal] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [sym_null_literal] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_final] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_new] = ACTIONS(1221), - [anon_sym_class] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_assert] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_yield] = ACTIONS(1221), - [anon_sym_synchronized] = ACTIONS(1221), - [anon_sym_throw] = ACTIONS(1221), - [anon_sym_try] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_AT] = ACTIONS(1221), - [anon_sym_open] = ACTIONS(1221), - [anon_sym_module] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_with] = ACTIONS(1221), - [anon_sym_package] = ACTIONS(1221), - [anon_sym_import] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_public] = ACTIONS(1221), - [anon_sym_protected] = ACTIONS(1221), - [anon_sym_private] = ACTIONS(1221), - [anon_sym_abstract] = ACTIONS(1221), - [anon_sym_strictfp] = ACTIONS(1221), - [anon_sym_native] = ACTIONS(1221), - [anon_sym_transient] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_sealed] = ACTIONS(1221), - [anon_sym_non_DASHsealed] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1221), - [anon_sym_ATinterface] = ACTIONS(1223), - [anon_sym_interface] = ACTIONS(1221), - [anon_sym_byte] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_int] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_char] = ACTIONS(1221), - [anon_sym_float] = ACTIONS(1221), - [anon_sym_double] = ACTIONS(1221), - [sym_boolean_type] = ACTIONS(1221), - [sym_void_type] = ACTIONS(1221), - [sym_this] = ACTIONS(1221), - [sym_super] = ACTIONS(1221), + [sym_identifier] = ACTIONS(1228), + [sym_decimal_integer_literal] = ACTIONS(1228), + [sym_hex_integer_literal] = ACTIONS(1228), + [sym_octal_integer_literal] = ACTIONS(1228), + [sym_binary_integer_literal] = ACTIONS(1230), + [sym_decimal_floating_point_literal] = ACTIONS(1230), + [sym_hex_floating_point_literal] = ACTIONS(1228), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [sym_character_literal] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1228), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [sym_null_literal] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_final] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1228), + [anon_sym_class] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_assert] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_yield] = ACTIONS(1228), + [anon_sym_synchronized] = ACTIONS(1228), + [anon_sym_throw] = ACTIONS(1228), + [anon_sym_try] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_AT] = ACTIONS(1228), + [anon_sym_open] = ACTIONS(1228), + [anon_sym_module] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_with] = ACTIONS(1228), + [anon_sym_package] = ACTIONS(1228), + [anon_sym_import] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_public] = ACTIONS(1228), + [anon_sym_protected] = ACTIONS(1228), + [anon_sym_private] = ACTIONS(1228), + [anon_sym_abstract] = ACTIONS(1228), + [anon_sym_strictfp] = ACTIONS(1228), + [anon_sym_native] = ACTIONS(1228), + [anon_sym_transient] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1228), + [anon_sym_sealed] = ACTIONS(1228), + [anon_sym_non_DASHsealed] = ACTIONS(1230), + [anon_sym_record] = ACTIONS(1228), + [anon_sym_ATinterface] = ACTIONS(1230), + [anon_sym_interface] = ACTIONS(1228), + [anon_sym_byte] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), + [anon_sym_int] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_char] = ACTIONS(1228), + [anon_sym_float] = ACTIONS(1228), + [anon_sym_double] = ACTIONS(1228), + [sym_boolean_type] = ACTIONS(1228), + [sym_void_type] = ACTIONS(1228), + [sym_this] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [398] = { - [sym_identifier] = ACTIONS(1225), - [sym_decimal_integer_literal] = ACTIONS(1225), - [sym_hex_integer_literal] = ACTIONS(1225), - [sym_octal_integer_literal] = ACTIONS(1225), - [sym_binary_integer_literal] = ACTIONS(1227), - [sym_decimal_floating_point_literal] = ACTIONS(1227), - [sym_hex_floating_point_literal] = ACTIONS(1225), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [sym_character_literal] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [sym_null_literal] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_final] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_new] = ACTIONS(1225), - [anon_sym_class] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_assert] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_yield] = ACTIONS(1225), - [anon_sym_synchronized] = ACTIONS(1225), - [anon_sym_throw] = ACTIONS(1225), - [anon_sym_try] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1225), - [anon_sym_open] = ACTIONS(1225), - [anon_sym_module] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_with] = ACTIONS(1225), - [anon_sym_package] = ACTIONS(1225), - [anon_sym_import] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_public] = ACTIONS(1225), - [anon_sym_protected] = ACTIONS(1225), - [anon_sym_private] = ACTIONS(1225), - [anon_sym_abstract] = ACTIONS(1225), - [anon_sym_strictfp] = ACTIONS(1225), - [anon_sym_native] = ACTIONS(1225), - [anon_sym_transient] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_sealed] = ACTIONS(1225), - [anon_sym_non_DASHsealed] = ACTIONS(1227), - [anon_sym_record] = ACTIONS(1225), - [anon_sym_ATinterface] = ACTIONS(1227), - [anon_sym_interface] = ACTIONS(1225), - [anon_sym_byte] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_int] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_char] = ACTIONS(1225), - [anon_sym_float] = ACTIONS(1225), - [anon_sym_double] = ACTIONS(1225), - [sym_boolean_type] = ACTIONS(1225), - [sym_void_type] = ACTIONS(1225), - [sym_this] = ACTIONS(1225), - [sym_super] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1232), + [sym_decimal_integer_literal] = ACTIONS(1232), + [sym_hex_integer_literal] = ACTIONS(1232), + [sym_octal_integer_literal] = ACTIONS(1232), + [sym_binary_integer_literal] = ACTIONS(1234), + [sym_decimal_floating_point_literal] = ACTIONS(1234), + [sym_hex_floating_point_literal] = ACTIONS(1232), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [sym_character_literal] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1232), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [sym_null_literal] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_final] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_class] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_assert] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_yield] = ACTIONS(1232), + [anon_sym_synchronized] = ACTIONS(1232), + [anon_sym_throw] = ACTIONS(1232), + [anon_sym_try] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_AT] = ACTIONS(1232), + [anon_sym_open] = ACTIONS(1232), + [anon_sym_module] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_with] = ACTIONS(1232), + [anon_sym_package] = ACTIONS(1232), + [anon_sym_import] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_public] = ACTIONS(1232), + [anon_sym_protected] = ACTIONS(1232), + [anon_sym_private] = ACTIONS(1232), + [anon_sym_abstract] = ACTIONS(1232), + [anon_sym_strictfp] = ACTIONS(1232), + [anon_sym_native] = ACTIONS(1232), + [anon_sym_transient] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_sealed] = ACTIONS(1232), + [anon_sym_non_DASHsealed] = ACTIONS(1234), + [anon_sym_record] = ACTIONS(1232), + [anon_sym_ATinterface] = ACTIONS(1234), + [anon_sym_interface] = ACTIONS(1232), + [anon_sym_byte] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_int] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_char] = ACTIONS(1232), + [anon_sym_float] = ACTIONS(1232), + [anon_sym_double] = ACTIONS(1232), + [sym_boolean_type] = ACTIONS(1232), + [sym_void_type] = ACTIONS(1232), + [sym_this] = ACTIONS(1232), + [sym_super] = ACTIONS(1232), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [399] = { - [sym_identifier] = ACTIONS(1229), - [sym_decimal_integer_literal] = ACTIONS(1229), - [sym_hex_integer_literal] = ACTIONS(1229), - [sym_octal_integer_literal] = ACTIONS(1229), - [sym_binary_integer_literal] = ACTIONS(1231), - [sym_decimal_floating_point_literal] = ACTIONS(1231), - [sym_hex_floating_point_literal] = ACTIONS(1229), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [sym_character_literal] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [sym_null_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_final] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_new] = ACTIONS(1229), - [anon_sym_class] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_assert] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_yield] = ACTIONS(1229), - [anon_sym_synchronized] = ACTIONS(1229), - [anon_sym_throw] = ACTIONS(1229), - [anon_sym_try] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1229), - [anon_sym_open] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_with] = ACTIONS(1229), - [anon_sym_package] = ACTIONS(1229), - [anon_sym_import] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_abstract] = ACTIONS(1229), - [anon_sym_strictfp] = ACTIONS(1229), - [anon_sym_native] = ACTIONS(1229), - [anon_sym_transient] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_sealed] = ACTIONS(1229), - [anon_sym_non_DASHsealed] = ACTIONS(1231), - [anon_sym_record] = ACTIONS(1229), - [anon_sym_ATinterface] = ACTIONS(1231), - [anon_sym_interface] = ACTIONS(1229), - [anon_sym_byte] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_int] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_char] = ACTIONS(1229), - [anon_sym_float] = ACTIONS(1229), - [anon_sym_double] = ACTIONS(1229), - [sym_boolean_type] = ACTIONS(1229), - [sym_void_type] = ACTIONS(1229), - [sym_this] = ACTIONS(1229), - [sym_super] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1236), + [sym_decimal_integer_literal] = ACTIONS(1236), + [sym_hex_integer_literal] = ACTIONS(1236), + [sym_octal_integer_literal] = ACTIONS(1236), + [sym_binary_integer_literal] = ACTIONS(1238), + [sym_decimal_floating_point_literal] = ACTIONS(1238), + [sym_hex_floating_point_literal] = ACTIONS(1236), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [sym_character_literal] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [sym_null_literal] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1238), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_final] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_new] = ACTIONS(1236), + [anon_sym_class] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_assert] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_yield] = ACTIONS(1236), + [anon_sym_synchronized] = ACTIONS(1236), + [anon_sym_throw] = ACTIONS(1236), + [anon_sym_try] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_AT] = ACTIONS(1236), + [anon_sym_open] = ACTIONS(1236), + [anon_sym_module] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_with] = ACTIONS(1236), + [anon_sym_package] = ACTIONS(1236), + [anon_sym_import] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_public] = ACTIONS(1236), + [anon_sym_protected] = ACTIONS(1236), + [anon_sym_private] = ACTIONS(1236), + [anon_sym_abstract] = ACTIONS(1236), + [anon_sym_strictfp] = ACTIONS(1236), + [anon_sym_native] = ACTIONS(1236), + [anon_sym_transient] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_sealed] = ACTIONS(1236), + [anon_sym_non_DASHsealed] = ACTIONS(1238), + [anon_sym_record] = ACTIONS(1236), + [anon_sym_ATinterface] = ACTIONS(1238), + [anon_sym_interface] = ACTIONS(1236), + [anon_sym_byte] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_int] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_char] = ACTIONS(1236), + [anon_sym_float] = ACTIONS(1236), + [anon_sym_double] = ACTIONS(1236), + [sym_boolean_type] = ACTIONS(1236), + [sym_void_type] = ACTIONS(1236), + [sym_this] = ACTIONS(1236), + [sym_super] = ACTIONS(1236), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [400] = { - [sym_identifier] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(1233), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_final] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_public] = ACTIONS(1233), - [anon_sym_protected] = ACTIONS(1233), - [anon_sym_private] = ACTIONS(1233), - [anon_sym_abstract] = ACTIONS(1233), - [anon_sym_strictfp] = ACTIONS(1233), - [anon_sym_native] = ACTIONS(1233), - [anon_sym_transient] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_sealed] = ACTIONS(1233), - [anon_sym_non_DASHsealed] = ACTIONS(1235), - [anon_sym_record] = ACTIONS(1233), - [anon_sym_ATinterface] = ACTIONS(1235), - [anon_sym_interface] = ACTIONS(1233), - [anon_sym_byte] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_int] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_char] = ACTIONS(1233), - [anon_sym_float] = ACTIONS(1233), - [anon_sym_double] = ACTIONS(1233), - [sym_boolean_type] = ACTIONS(1233), - [sym_void_type] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1240), + [sym_decimal_integer_literal] = ACTIONS(1240), + [sym_hex_integer_literal] = ACTIONS(1240), + [sym_octal_integer_literal] = ACTIONS(1240), + [sym_binary_integer_literal] = ACTIONS(1242), + [sym_decimal_floating_point_literal] = ACTIONS(1242), + [sym_hex_floating_point_literal] = ACTIONS(1240), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [sym_character_literal] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [sym_null_literal] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_final] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_new] = ACTIONS(1240), + [anon_sym_class] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_assert] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_synchronized] = ACTIONS(1240), + [anon_sym_throw] = ACTIONS(1240), + [anon_sym_try] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_open] = ACTIONS(1240), + [anon_sym_module] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_with] = ACTIONS(1240), + [anon_sym_package] = ACTIONS(1240), + [anon_sym_import] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_public] = ACTIONS(1240), + [anon_sym_protected] = ACTIONS(1240), + [anon_sym_private] = ACTIONS(1240), + [anon_sym_abstract] = ACTIONS(1240), + [anon_sym_strictfp] = ACTIONS(1240), + [anon_sym_native] = ACTIONS(1240), + [anon_sym_transient] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_sealed] = ACTIONS(1240), + [anon_sym_non_DASHsealed] = ACTIONS(1242), + [anon_sym_record] = ACTIONS(1240), + [anon_sym_ATinterface] = ACTIONS(1242), + [anon_sym_interface] = ACTIONS(1240), + [anon_sym_byte] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_int] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_char] = ACTIONS(1240), + [anon_sym_float] = ACTIONS(1240), + [anon_sym_double] = ACTIONS(1240), + [sym_boolean_type] = ACTIONS(1240), + [sym_void_type] = ACTIONS(1240), + [sym_this] = ACTIONS(1240), + [sym_super] = ACTIONS(1240), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [401] = { - [sym_identifier] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_final] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_public] = ACTIONS(1233), - [anon_sym_protected] = ACTIONS(1233), - [anon_sym_private] = ACTIONS(1233), - [anon_sym_abstract] = ACTIONS(1233), - [anon_sym_strictfp] = ACTIONS(1233), - [anon_sym_native] = ACTIONS(1233), - [anon_sym_transient] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_sealed] = ACTIONS(1233), - [anon_sym_non_DASHsealed] = ACTIONS(1235), - [anon_sym_record] = ACTIONS(1233), - [anon_sym_ATinterface] = ACTIONS(1235), - [anon_sym_interface] = ACTIONS(1233), - [anon_sym_byte] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_int] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_char] = ACTIONS(1233), - [anon_sym_float] = ACTIONS(1233), - [anon_sym_double] = ACTIONS(1233), - [sym_boolean_type] = ACTIONS(1233), - [sym_void_type] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(423), + [anon_sym_final] = ACTIONS(1244), + [anon_sym_DASH_GT] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(425), + [anon_sym_DASH_DASH] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_class] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(1244), + [anon_sym_AT] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_public] = ACTIONS(1244), + [anon_sym_protected] = ACTIONS(1244), + [anon_sym_private] = ACTIONS(1244), + [anon_sym_abstract] = ACTIONS(1244), + [anon_sym_strictfp] = ACTIONS(1244), + [anon_sym_native] = ACTIONS(1244), + [anon_sym_transient] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_sealed] = ACTIONS(1244), + [anon_sym_non_DASHsealed] = ACTIONS(1246), + [anon_sym_record] = ACTIONS(1244), + [anon_sym_ATinterface] = ACTIONS(1246), + [anon_sym_interface] = ACTIONS(1244), + [anon_sym_byte] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_int] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_float] = ACTIONS(1244), + [anon_sym_double] = ACTIONS(1244), + [sym_boolean_type] = ACTIONS(1244), + [sym_void_type] = ACTIONS(1244), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [402] = { - [sym_identifier] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_final] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_COMMA] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1235), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_public] = ACTIONS(1233), - [anon_sym_protected] = ACTIONS(1233), - [anon_sym_private] = ACTIONS(1233), - [anon_sym_abstract] = ACTIONS(1233), - [anon_sym_strictfp] = ACTIONS(1233), - [anon_sym_native] = ACTIONS(1233), - [anon_sym_transient] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_sealed] = ACTIONS(1233), - [anon_sym_non_DASHsealed] = ACTIONS(1235), - [anon_sym_byte] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_int] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_char] = ACTIONS(1233), - [anon_sym_float] = ACTIONS(1233), - [anon_sym_double] = ACTIONS(1233), - [sym_boolean_type] = ACTIONS(1233), - [sym_void_type] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(423), + [anon_sym_final] = ACTIONS(1244), + [anon_sym_DASH_GT] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(425), + [anon_sym_DASH_DASH] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_class] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(1244), + [anon_sym_AT] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_public] = ACTIONS(1244), + [anon_sym_protected] = ACTIONS(1244), + [anon_sym_private] = ACTIONS(1244), + [anon_sym_abstract] = ACTIONS(1244), + [anon_sym_strictfp] = ACTIONS(1244), + [anon_sym_native] = ACTIONS(1244), + [anon_sym_transient] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_sealed] = ACTIONS(1244), + [anon_sym_non_DASHsealed] = ACTIONS(1246), + [anon_sym_record] = ACTIONS(1244), + [anon_sym_ATinterface] = ACTIONS(1246), + [anon_sym_interface] = ACTIONS(1244), + [anon_sym_byte] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_int] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_float] = ACTIONS(1244), + [anon_sym_double] = ACTIONS(1244), + [sym_boolean_type] = ACTIONS(1244), + [sym_void_type] = ACTIONS(1244), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [403] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), + [sym_identifier] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(425), + [anon_sym_RPAREN] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(423), + [anon_sym_PLUS_EQ] = ACTIONS(425), + [anon_sym_DASH_EQ] = ACTIONS(425), + [anon_sym_STAR_EQ] = ACTIONS(425), + [anon_sym_SLASH_EQ] = ACTIONS(425), + [anon_sym_AMP_EQ] = ACTIONS(425), + [anon_sym_PIPE_EQ] = ACTIONS(425), + [anon_sym_CARET_EQ] = ACTIONS(425), + [anon_sym_PERCENT_EQ] = ACTIONS(425), + [anon_sym_LT_LT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(425), + [anon_sym_LT_EQ] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(425), + [anon_sym_BANG_EQ] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(425), + [anon_sym_PIPE_PIPE] = ACTIONS(425), + [anon_sym_PLUS] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym_PERCENT] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_GT_GT_GT] = ACTIONS(423), + [anon_sym_instanceof] = ACTIONS(423), + [anon_sym_final] = ACTIONS(1244), + [anon_sym_DASH_GT] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(425), + [anon_sym_DASH_DASH] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(425), + [anon_sym_synchronized] = ACTIONS(1244), + [anon_sym_AT] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_public] = ACTIONS(1244), + [anon_sym_protected] = ACTIONS(1244), + [anon_sym_private] = ACTIONS(1244), + [anon_sym_abstract] = ACTIONS(1244), + [anon_sym_strictfp] = ACTIONS(1244), + [anon_sym_native] = ACTIONS(1244), + [anon_sym_transient] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_sealed] = ACTIONS(1244), + [anon_sym_non_DASHsealed] = ACTIONS(1246), + [anon_sym_byte] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_int] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_float] = ACTIONS(1244), + [anon_sym_double] = ACTIONS(1244), + [sym_boolean_type] = ACTIONS(1244), + [sym_void_type] = ACTIONS(1244), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [404] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), [sym_lambda_expression] = STATE(602), - [sym_inferred_parameters] = STATE(1327), - [sym_primary_expression] = STATE(512), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(568), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(581), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1237), + [sym_inferred_parameters] = STATE(1384), + [sym_primary_expression] = STATE(530), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(562), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(562), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1384), + [sym__reserved_identifier] = STATE(585), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(1248), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -48879,15 +48796,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1250), [anon_sym_new] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(1241), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(1241), - [anon_sym_module] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1241), - [anon_sym_sealed] = ACTIONS(1241), - [anon_sym_record] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(435), + [anon_sym_open] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_with] = ACTIONS(1254), + [anon_sym_sealed] = ACTIONS(1254), + [anon_sym_record] = ACTIONS(1254), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), [anon_sym_int] = ACTIONS(87), @@ -48898,43 +48815,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_type] = ACTIONS(91), [sym_void_type] = ACTIONS(91), [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(1243), + [sym_super] = ACTIONS(1256), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [404] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), + [405] = { + [sym__literal] = STATE(562), + [sym_string_literal] = STATE(561), + [sym__string_literal] = STATE(526), + [sym__multiline_string_literal] = STATE(526), [sym_lambda_expression] = STATE(602), - [sym_inferred_parameters] = STATE(1348), - [sym_primary_expression] = STATE(512), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(568), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(498), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1245), + [sym_inferred_parameters] = STATE(1363), + [sym_primary_expression] = STATE(530), + [sym_array_creation_expression] = STATE(562), + [sym_parenthesized_expression] = STATE(562), + [sym_class_literal] = STATE(562), + [sym_object_creation_expression] = STATE(562), + [sym__unqualified_object_creation_expression] = STATE(550), + [sym_field_access] = STATE(562), + [sym_template_expression] = STATE(562), + [sym_array_access] = STATE(562), + [sym_method_invocation] = STATE(562), + [sym_method_reference] = STATE(562), + [sym__annotation] = STATE(789), + [sym_marker_annotation] = STATE(789), + [sym_annotation] = STATE(789), + [sym__type] = STATE(1318), + [sym__unannotated_type] = STATE(895), + [sym_annotated_type] = STATE(923), + [sym_scoped_type_identifier] = STATE(818), + [sym_generic_type] = STATE(843), + [sym_array_type] = STATE(766), + [sym_integral_type] = STATE(766), + [sym_floating_point_type] = STATE(766), + [sym_formal_parameters] = STATE(1363), + [sym__reserved_identifier] = STATE(497), + [aux_sym_array_creation_expression_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(1258), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -48947,15 +48864,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1250), [anon_sym_new] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(1241), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(1241), - [anon_sym_module] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1241), - [anon_sym_sealed] = ACTIONS(1241), - [anon_sym_record] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(435), + [anon_sym_open] = ACTIONS(1254), + [anon_sym_module] = ACTIONS(1254), + [anon_sym_with] = ACTIONS(1254), + [anon_sym_sealed] = ACTIONS(1254), + [anon_sym_record] = ACTIONS(1254), [anon_sym_byte] = ACTIONS(87), [anon_sym_short] = ACTIONS(87), [anon_sym_int] = ACTIONS(87), @@ -48966,7 +48883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_boolean_type] = ACTIONS(91), [sym_void_type] = ACTIONS(91), [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(1243), + [sym_super] = ACTIONS(1256), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, @@ -48977,7 +48894,74 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(422), 26, + ACTIONS(425), 26, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(423), 35, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_final, + anon_sym_COLON, + anon_sym_default, + anon_sym_when, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + 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, + [70] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(425), 26, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -49004,7 +48988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(420), 35, + ACTIONS(423), 35, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -49040,7 +49024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [70] = 28, + [140] = 28, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49057,29 +49041,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(85), 1, anon_sym_interface, - ACTIONS(1247), 1, + ACTIONS(1260), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1262), 1, anon_sym_RBRACE, - ACTIONS(1251), 1, + ACTIONS(1264), 1, anon_sym_SEMI, - ACTIONS(1253), 1, + ACTIONS(1266), 1, anon_sym_static, - ACTIONS(1255), 1, + ACTIONS(1268), 1, anon_sym_record, - STATE(689), 1, + STATE(698), 1, sym_modifiers, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(788), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(797), 1, + sym_type_parameters, + STATE(1027), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1170), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -49090,11 +49074,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -49118,7 +49102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(409), 12, + STATE(410), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49131,7 +49115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [189] = 28, + [259] = 28, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49148,29 +49132,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(85), 1, anon_sym_interface, - ACTIONS(1247), 1, + ACTIONS(1260), 1, sym_identifier, - ACTIONS(1253), 1, + ACTIONS(1266), 1, anon_sym_static, - ACTIONS(1255), 1, + ACTIONS(1268), 1, anon_sym_record, - ACTIONS(1257), 1, + ACTIONS(1270), 1, anon_sym_RBRACE, - ACTIONS(1259), 1, + ACTIONS(1272), 1, anon_sym_SEMI, - STATE(689), 1, + STATE(698), 1, sym_modifiers, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(788), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(797), 1, + sym_type_parameters, + STATE(1027), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1170), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -49181,11 +49165,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -49209,7 +49193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(410), 12, + STATE(412), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49222,7 +49206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [308] = 28, + [378] = 28, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49239,29 +49223,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(85), 1, anon_sym_interface, - ACTIONS(1247), 1, + ACTIONS(1260), 1, sym_identifier, - ACTIONS(1253), 1, + ACTIONS(1266), 1, anon_sym_static, - ACTIONS(1255), 1, + ACTIONS(1268), 1, anon_sym_record, - ACTIONS(1261), 1, - anon_sym_RBRACE, - ACTIONS(1263), 1, + ACTIONS(1272), 1, anon_sym_SEMI, - STATE(689), 1, + ACTIONS(1274), 1, + anon_sym_RBRACE, + STATE(698), 1, sym_modifiers, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(788), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(797), 1, + sym_type_parameters, + STATE(1027), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1170), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -49272,11 +49256,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -49300,7 +49284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(407), 12, + STATE(412), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49313,7 +49297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [427] = 28, + [497] = 28, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49330,29 +49314,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(85), 1, anon_sym_interface, - ACTIONS(1247), 1, + ACTIONS(1260), 1, sym_identifier, - ACTIONS(1253), 1, + ACTIONS(1266), 1, anon_sym_static, - ACTIONS(1255), 1, + ACTIONS(1268), 1, anon_sym_record, - ACTIONS(1259), 1, - anon_sym_SEMI, - ACTIONS(1265), 1, + ACTIONS(1276), 1, anon_sym_RBRACE, - STATE(689), 1, + ACTIONS(1278), 1, + anon_sym_SEMI, + STATE(698), 1, sym_modifiers, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(788), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(797), 1, + sym_type_parameters, + STATE(1027), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1170), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -49363,11 +49347,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -49391,7 +49375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(410), 12, + STATE(409), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49404,72 +49388,72 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [546] = 28, - ACTIONS(1267), 1, + [616] = 28, + ACTIONS(1280), 1, sym_identifier, - ACTIONS(1270), 1, + ACTIONS(1283), 1, anon_sym_RBRACE, - ACTIONS(1272), 1, + ACTIONS(1285), 1, anon_sym_LT, - ACTIONS(1278), 1, + ACTIONS(1291), 1, anon_sym_class, - ACTIONS(1281), 1, + ACTIONS(1294), 1, anon_sym_LBRACE, - ACTIONS(1284), 1, + ACTIONS(1297), 1, anon_sym_SEMI, - ACTIONS(1287), 1, + ACTIONS(1300), 1, anon_sym_AT, - ACTIONS(1290), 1, + ACTIONS(1303), 1, anon_sym_static, - ACTIONS(1293), 1, + ACTIONS(1306), 1, anon_sym_enum, - ACTIONS(1296), 1, + ACTIONS(1309), 1, anon_sym_non_DASHsealed, - ACTIONS(1299), 1, + ACTIONS(1312), 1, anon_sym_record, - ACTIONS(1302), 1, + ACTIONS(1315), 1, anon_sym_ATinterface, - ACTIONS(1305), 1, + ACTIONS(1318), 1, anon_sym_interface, - STATE(689), 1, + STATE(698), 1, sym_modifiers, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(788), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(797), 1, + sym_type_parameters, + STATE(1027), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1170), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1311), 2, + ACTIONS(1324), 2, anon_sym_float, anon_sym_double, - ACTIONS(1314), 2, + ACTIONS(1327), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1308), 5, + ACTIONS(1321), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(1275), 12, + ACTIONS(1288), 12, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -49482,7 +49466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(410), 12, + STATE(412), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49495,30 +49479,30 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [665] = 14, - ACTIONS(1321), 1, + [735] = 14, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1354), 1, anon_sym_AT, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 8, + ACTIONS(1330), 8, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -49527,7 +49511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49539,7 +49523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1319), 14, + ACTIONS(1332), 14, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -49554,7 +49538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_SEMI, - ACTIONS(1323), 15, + ACTIONS(1336), 15, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -49570,37 +49554,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_COLON, anon_sym_when, - [754] = 17, - ACTIONS(1321), 1, + [824] = 17, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1343), 1, + ACTIONS(1356), 1, anon_sym_RPAREN, - ACTIONS(1346), 1, + ACTIONS(1359), 1, anon_sym_COMMA, - ACTIONS(1348), 1, + ACTIONS(1361), 1, anon_sym_DOT, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, - STATE(1153), 1, + STATE(1088), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1341), 2, + ACTIONS(1354), 2, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1317), 9, + ACTIONS(1330), 9, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -49610,7 +49594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1319), 9, + ACTIONS(1332), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -49620,7 +49604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49632,7 +49616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, + ACTIONS(1336), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -49646,39 +49630,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [847] = 18, - ACTIONS(1321), 1, + [917] = 18, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1346), 1, + ACTIONS(1359), 1, anon_sym_COMMA, - ACTIONS(1348), 1, + ACTIONS(1361), 1, anon_sym_DOT, - ACTIONS(1352), 1, + ACTIONS(1365), 1, anon_sym_RPAREN, - ACTIONS(1356), 1, + ACTIONS(1369), 1, anon_sym_AMP, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, - STATE(1153), 1, + STATE(1088), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1341), 2, + ACTIONS(1354), 2, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1317), 9, + ACTIONS(1330), 9, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -49688,7 +49672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1319), 9, + ACTIONS(1332), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -49698,7 +49682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49710,7 +49694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 12, + ACTIONS(1336), 12, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -49723,7 +49707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [942] = 25, + [1012] = 25, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49738,25 +49722,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(85), 1, anon_sym_interface, - ACTIONS(1255), 1, + ACTIONS(1268), 1, anon_sym_record, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - ACTIONS(1361), 1, + ACTIONS(1374), 1, anon_sym_RBRACE, - ACTIONS(1363), 1, + ACTIONS(1376), 1, anon_sym_SEMI, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(718), 1, + STATE(737), 1, sym_modifiers, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(780), 1, + STATE(791), 1, sym__unannotated_type, - STATE(1166), 1, + STATE(799), 1, + sym_type_parameters, + STATE(1170), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -49767,11 +49751,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -49782,7 +49766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(416), 8, + STATE(420), 8, sym_enum_declaration, sym_class_declaration, sym_record_declaration, @@ -49805,32 +49789,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1049] = 15, - ACTIONS(1329), 1, + [1119] = 15, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1365), 1, + ACTIONS(1378), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1380), 1, anon_sym_EQ, - ACTIONS(1371), 1, + ACTIONS(1384), 1, anon_sym_DASH_GT, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(607), 1, + STATE(590), 1, sym_record_pattern_body, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 7, + ACTIONS(1330), 7, anon_sym_yield, anon_sym_open, anon_sym_module, @@ -49838,7 +49822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1319), 10, + ACTIONS(1332), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -49849,7 +49833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 11, + ACTIONS(1382), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -49861,7 +49845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 15, + ACTIONS(1336), 15, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -49877,7 +49861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_COLON, anon_sym_when, - [1136] = 25, + [1206] = 25, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49892,25 +49876,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(85), 1, anon_sym_interface, - ACTIONS(1255), 1, + ACTIONS(1268), 1, anon_sym_record, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - ACTIONS(1374), 1, + ACTIONS(1387), 1, anon_sym_RBRACE, - ACTIONS(1376), 1, + ACTIONS(1389), 1, anon_sym_SEMI, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(718), 1, + STATE(737), 1, sym_modifiers, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(780), 1, + STATE(791), 1, sym__unannotated_type, - STATE(1166), 1, + STATE(799), 1, + sym_type_parameters, + STATE(1170), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, @@ -49921,11 +49905,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -49936,7 +49920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(418), 8, + STATE(416), 8, sym_enum_declaration, sym_class_declaration, sym_record_declaration, @@ -49959,32 +49943,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1243] = 15, - ACTIONS(1325), 1, + [1313] = 15, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1365), 1, + ACTIONS(1378), 1, anon_sym_LPAREN, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(607), 1, + STATE(590), 1, sym_record_pattern_body, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 7, + ACTIONS(1330), 7, anon_sym_yield, anon_sym_open, anon_sym_module, @@ -49992,7 +49976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1319), 10, + ACTIONS(1332), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -50003,7 +49987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50015,7 +49999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 15, + ACTIONS(1336), 15, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -50031,66 +50015,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_COLON, anon_sym_when, - [1330] = 25, - ACTIONS(1378), 1, + [1400] = 25, + ACTIONS(1391), 1, sym_identifier, - ACTIONS(1381), 1, + ACTIONS(1394), 1, anon_sym_RBRACE, - ACTIONS(1383), 1, + ACTIONS(1396), 1, anon_sym_LT, - ACTIONS(1389), 1, + ACTIONS(1402), 1, anon_sym_class, - ACTIONS(1392), 1, + ACTIONS(1405), 1, anon_sym_SEMI, - ACTIONS(1395), 1, + ACTIONS(1408), 1, anon_sym_AT, - ACTIONS(1398), 1, + ACTIONS(1411), 1, anon_sym_enum, - ACTIONS(1401), 1, + ACTIONS(1414), 1, anon_sym_non_DASHsealed, - ACTIONS(1404), 1, + ACTIONS(1417), 1, anon_sym_record, - ACTIONS(1407), 1, + ACTIONS(1420), 1, anon_sym_ATinterface, - ACTIONS(1410), 1, + ACTIONS(1423), 1, anon_sym_interface, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(718), 1, + STATE(737), 1, sym_modifiers, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(780), 1, + STATE(791), 1, sym__unannotated_type, - STATE(1166), 1, + STATE(799), 1, + sym_type_parameters, + STATE(1170), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 2, + ACTIONS(1429), 2, anon_sym_float, anon_sym_double, - ACTIONS(1419), 2, + ACTIONS(1432), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1413), 5, + ACTIONS(1426), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(418), 8, + STATE(420), 8, sym_enum_declaration, sym_class_declaration, sym_record_declaration, @@ -50099,7 +50083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(1386), 13, + ACTIONS(1399), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50113,32 +50097,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1437] = 15, - ACTIONS(1321), 1, + [1507] = 15, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1422), 1, + ACTIONS(1435), 1, anon_sym_COLON, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 8, + ACTIONS(1330), 8, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -50147,7 +50131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1319), 10, + ACTIONS(1332), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -50158,7 +50142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50170,7 +50154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, + ACTIONS(1336), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -50184,33 +50168,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1523] = 15, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1325), 1, + [1593] = 15, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1424), 1, - anon_sym_COLON, - STATE(569), 1, + ACTIONS(1437), 1, + anon_sym_LPAREN, + STATE(563), 1, sym_argument_list, - STATE(735), 1, + STATE(590), 1, + sym_record_pattern_body, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 8, - sym_underscore_pattern, + ACTIONS(1330), 7, anon_sym_yield, anon_sym_open, anon_sym_module, @@ -50218,18 +50201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1319), 10, + ACTIONS(1332), 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_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_SEMI, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50241,7 +50225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, + ACTIONS(1336), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -50255,32 +50239,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1609] = 15, - ACTIONS(1321), 1, + [1679] = 15, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1426), 1, + ACTIONS(1439), 1, anon_sym_COLON, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 8, + ACTIONS(1330), 8, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -50289,7 +50273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1319), 10, + ACTIONS(1332), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -50300,7 +50284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50312,7 +50296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, + ACTIONS(1336), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -50326,32 +50310,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1695] = 15, - ACTIONS(1325), 1, + [1765] = 15, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1354), 1, anon_sym_AT, - ACTIONS(1428), 1, - anon_sym_LPAREN, - STATE(569), 1, + ACTIONS(1441), 1, + anon_sym_COLON, + STATE(563), 1, sym_argument_list, - STATE(607), 1, - sym_record_pattern_body, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 7, + ACTIONS(1330), 8, + sym_underscore_pattern, anon_sym_yield, anon_sym_open, anon_sym_module, @@ -50359,19 +50344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1319), 11, - anon_sym_RPAREN, + ACTIONS(1332), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1327), 11, + anon_sym_SEMI, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50383,7 +50367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, + ACTIONS(1336), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -50397,23 +50381,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1781] = 6, - ACTIONS(1430), 1, + [1851] = 7, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(1443), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1112), 2, + STATE(1099), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - ACTIONS(420), 15, + ACTIONS(423), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -50429,7 +50414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - ACTIONS(422), 26, + ACTIONS(425), 26, anon_sym_LPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -50456,52 +50441,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - [1846] = 21, - ACTIONS(31), 1, + [1918] = 21, + ACTIONS(1445), 1, + sym_identifier, + ACTIONS(1448), 1, + anon_sym_RBRACE, + ACTIONS(1453), 1, anon_sym_class, - ACTIONS(63), 1, + ACTIONS(1456), 1, + anon_sym_SEMI, + ACTIONS(1459), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(1462), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(1465), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(1468), 1, anon_sym_ATinterface, - ACTIONS(85), 1, + ACTIONS(1471), 1, anon_sym_interface, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(1432), 1, - anon_sym_RBRACE, - ACTIONS(1434), 1, - anon_sym_SEMI, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(793), 1, + STATE(801), 1, sym__unannotated_type, - STATE(802), 1, + STATE(804), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(1477), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(1480), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(1474), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -50515,7 +50500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(23), 13, + ACTIONS(1450), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50529,7 +50514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1940] = 21, + [2012] = 21, ACTIONS(31), 1, anon_sym_class, ACTIONS(63), 1, @@ -50542,19 +50527,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, ACTIONS(85), 1, anon_sym_interface, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - ACTIONS(1436), 1, + ACTIONS(1483), 1, anon_sym_RBRACE, - ACTIONS(1438), 1, + ACTIONS(1485), 1, anon_sym_SEMI, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(793), 1, + STATE(801), 1, sym__unannotated_type, - STATE(802), 1, + STATE(804), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, @@ -50565,11 +50550,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -50580,7 +50565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - STATE(424), 7, + STATE(428), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -50602,52 +50587,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2034] = 21, - ACTIONS(1440), 1, - sym_identifier, - ACTIONS(1443), 1, - anon_sym_RBRACE, - ACTIONS(1448), 1, + [2106] = 21, + ACTIONS(31), 1, anon_sym_class, - ACTIONS(1451), 1, - anon_sym_SEMI, - ACTIONS(1454), 1, + ACTIONS(63), 1, anon_sym_AT, - ACTIONS(1457), 1, + ACTIONS(75), 1, anon_sym_enum, - ACTIONS(1460), 1, + ACTIONS(79), 1, anon_sym_non_DASHsealed, - ACTIONS(1463), 1, + ACTIONS(83), 1, anon_sym_ATinterface, - ACTIONS(1466), 1, + ACTIONS(85), 1, anon_sym_interface, - STATE(695), 1, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(1487), 1, + anon_sym_RBRACE, + ACTIONS(1489), 1, + anon_sym_SEMI, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(793), 1, + STATE(801), 1, sym__unannotated_type, - STATE(802), 1, + STATE(804), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1472), 2, + ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(1475), 2, + ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(505), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1469), 5, + ACTIONS(87), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -50661,7 +50646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(1445), 13, + ACTIONS(23), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50675,74 +50660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2128] = 8, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1319), 19, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [2195] = 5, - ACTIONS(1321), 1, + [2200] = 5, + ACTIONS(1334), 1, anon_sym_LPAREN, - STATE(543), 1, + STATE(515), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1480), 15, + ACTIONS(1493), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -50758,7 +50684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1478), 31, + ACTIONS(1491), 31, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PLUS_EQ, @@ -50790,15 +50716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [2256] = 5, - ACTIONS(1321), 1, + [2261] = 5, + ACTIONS(1334), 1, anon_sym_LPAREN, - STATE(541), 1, + STATE(556), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1484), 15, + ACTIONS(1497), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -50814,7 +50740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1482), 31, + ACTIONS(1495), 31, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PLUS_EQ, @@ -50846,41 +50772,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [2317] = 7, - ACTIONS(1490), 1, - anon_sym_LBRACK, - ACTIONS(1493), 1, - anon_sym_AT, - STATE(430), 1, - aux_sym_dimensions_repeat1, + [2322] = 8, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(1338), 1, + anon_sym_EQ, + ACTIONS(1345), 1, + anon_sym_DASH_GT, + STATE(563), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(962), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1486), 18, + ACTIONS(1340), 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(1336), 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_instanceof, + anon_sym_GT_GT_GT, anon_sym_COLON, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1488), 22, + ACTIONS(1332), 19, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -50889,36 +50820,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_DASH_GT, + anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - [2381] = 7, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1500), 1, + [2389] = 7, + ACTIONS(1503), 1, anon_sym_LBRACK, - STATE(430), 1, + ACTIONS(1506), 1, + anon_sym_AT, + STATE(432), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(962), 4, + STATE(959), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1496), 18, + ACTIONS(1499), 18, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -50937,7 +50865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1498), 22, + ACTIONS(1501), 22, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -50960,11 +50888,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - [2445] = 3, + [2453] = 7, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1513), 1, + anon_sym_LBRACK, + STATE(432), 1, + aux_sym_dimensions_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(959), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1509), 18, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_COLON, + anon_sym_when, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + ACTIONS(1511), 22, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + [2517] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1484), 15, + ACTIONS(1517), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -50980,7 +50965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1482), 31, + ACTIONS(1515), 31, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PLUS_EQ, @@ -51012,87 +50997,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [2500] = 8, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1500), 1, - anon_sym_LBRACK, - STATE(431), 1, - aux_sym_dimensions_repeat1, - STATE(475), 1, - sym_dimensions, + [2572] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(962), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1502), 17, + ACTIONS(1493), 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_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1504), 21, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_SEMI, - [2565] = 13, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1367), 1, - anon_sym_EQ, - ACTIONS(1371), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1369), 11, + ACTIONS(1491), 31, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51104,7 +51031,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1319), 12, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -51112,43 +51038,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_when, - ACTIONS(1323), 13, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - [2640] = 8, - ACTIONS(464), 1, + anon_sym_SEMI, + [2627] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1500), 1, + ACTIONS(1513), 1, anon_sym_LBRACK, - STATE(431), 1, + STATE(433), 1, aux_sym_dimensions_repeat1, - STATE(475), 1, + STATE(476), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(962), 4, + STATE(959), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1506), 17, + ACTIONS(1519), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51166,7 +51084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1508), 21, + ACTIONS(1521), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -51188,29 +51106,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_SEMI, - [2705] = 3, + [2692] = 8, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1513), 1, + anon_sym_LBRACK, + STATE(433), 1, + aux_sym_dimensions_repeat1, + STATE(476), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1512), 15, + STATE(959), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1523), 17, 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_GT_GT, + anon_sym_instanceof, + anon_sym_when, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + ACTIONS(1525), 21, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, - ACTIONS(1510), 31, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_SEMI, + [2757] = 13, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1350), 1, + anon_sym_DOT, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1380), 1, + anon_sym_EQ, + ACTIONS(1384), 1, + anon_sym_DASH_GT, + STATE(563), 1, + sym_argument_list, + STATE(734), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1382), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51222,6 +51198,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(1332), 12, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -51229,22 +51206,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_instanceof, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_when, - anon_sym_SEMI, - [2760] = 3, + ACTIONS(1336), 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, + [2832] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1480), 15, + ACTIONS(1497), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -51260,7 +51245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1478), 31, + ACTIONS(1495), 31, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PLUS_EQ, @@ -51292,21 +51277,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [2815] = 9, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1367), 1, + [2887] = 9, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1371), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - STATE(569), 1, + ACTIONS(1378), 1, + anon_sym_LPAREN, + STATE(563), 1, sym_argument_list, - STATE(607), 1, + STATE(590), 1, sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51318,7 +51303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + ACTIONS(1336), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51333,7 +51318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1319), 15, + ACTIONS(1332), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -51349,13 +51334,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_when, - [2881] = 5, - ACTIONS(1325), 1, + [2953] = 5, + ACTIONS(1338), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51367,7 +51352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + ACTIONS(1336), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51382,7 +51367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1319), 19, + ACTIONS(1332), 19, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -51402,21 +51387,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [2939] = 9, - ACTIONS(1325), 1, + [3011] = 9, + ACTIONS(1378), 1, + anon_sym_LPAREN, + ACTIONS(1380), 1, anon_sym_EQ, - ACTIONS(1332), 1, + ACTIONS(1384), 1, anon_sym_DASH_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(607), 1, + STATE(590), 1, sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1327), 11, + ACTIONS(1382), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51428,7 +51413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + ACTIONS(1336), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51443,7 +51428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1319), 15, + ACTIONS(1332), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -51459,25 +51444,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_when, - [3005] = 11, - ACTIONS(1321), 1, + [3077] = 13, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1345), 1, + anon_sym_DASH_GT, + ACTIONS(1350), 1, + anon_sym_DOT, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_EQ, + STATE(563), 1, + sym_argument_list, + STATE(734), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1332), 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(1340), 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(1336), 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, + [3150] = 11, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1338), 1, anon_sym_EQ, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1343), 1, + ACTIONS(1356), 1, anon_sym_RPAREN, - ACTIONS(1346), 1, + ACTIONS(1359), 1, anon_sym_COMMA, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(1153), 1, + STATE(1088), 1, aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1327), 11, + ACTIONS(1340), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51489,7 +51534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1319), 13, + ACTIONS(1332), 13, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -51503,7 +51548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - ACTIONS(1323), 13, + ACTIONS(1336), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51517,39 +51562,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - [3074] = 8, - ACTIONS(1514), 1, + [3219] = 9, + ACTIONS(1338), 1, + anon_sym_EQ, + ACTIONS(1345), 1, + anon_sym_DASH_GT, + ACTIONS(1437), 1, anon_sym_LPAREN, - ACTIONS(1516), 1, - anon_sym_LT, - ACTIONS(1519), 1, - anon_sym_DOT, - STATE(453), 1, - sym_type_arguments, - STATE(607), 1, + STATE(563), 1, + sym_argument_list, + STATE(590), 1, sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 16, + ACTIONS(1340), 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(1336), 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_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1341), 23, - anon_sym_RBRACE, + anon_sym_GT_GT_GT, + ACTIONS(1332), 15, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -51557,34 +51610,27 @@ 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_DASH_GT, + anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_AT, - [3137] = 8, - ACTIONS(1321), 1, + anon_sym_DOT, + anon_sym_COLON_COLON, + [3284] = 8, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1367), 1, + ACTIONS(1380), 1, anon_sym_EQ, - ACTIONS(1371), 1, + ACTIONS(1384), 1, anon_sym_DASH_GT, - STATE(569), 1, + STATE(563), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 11, + ACTIONS(1382), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51596,7 +51642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + ACTIONS(1336), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51611,7 +51657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1319), 15, + ACTIONS(1332), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -51627,107 +51673,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_when, - [3200] = 13, - ACTIONS(1321), 1, + [3347] = 8, + ACTIONS(1529), 1, anon_sym_LPAREN, - ACTIONS(1329), 1, + ACTIONS(1531), 1, anon_sym_LT, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1534), 1, anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1521), 1, - anon_sym_EQ, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, + STATE(461), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1319), 11, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 12, - anon_sym_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, - [3273] = 9, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1428), 1, - anon_sym_LPAREN, - STATE(569), 1, - sym_argument_list, - STATE(607), 1, + STATE(590), 1, sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, + ACTIONS(1330), 16, 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(1319), 15, + anon_sym_instanceof, + anon_sym_when, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + ACTIONS(1354), 23, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -51735,35 +51713,42 @@ 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_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_DOT, - anon_sym_COLON_COLON, - [3338] = 9, - ACTIONS(464), 1, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(1527), 1, + [3410] = 9, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1540), 1, anon_sym_LBRACK, - STATE(431), 1, + STATE(433), 1, aux_sym_dimensions_repeat1, - STATE(564), 1, + STATE(547), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, + STATE(472), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(963), 4, + STATE(960), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1525), 9, + ACTIONS(1538), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51773,7 +51758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1523), 24, + ACTIONS(1536), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -51798,17 +51783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [3402] = 6, - ACTIONS(1514), 1, + [3474] = 6, + ACTIONS(1529), 1, anon_sym_LPAREN, - ACTIONS(1533), 1, + ACTIONS(1546), 1, anon_sym_DOT, - STATE(607), 1, + STATE(590), 1, sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 17, + ACTIONS(1542), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51826,7 +51811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1531), 23, + ACTIONS(1544), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -51850,27 +51835,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_SEMI, anon_sym_AT, - [3460] = 9, - ACTIONS(464), 1, + [3532] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1527), 1, + ACTIONS(1540), 1, anon_sym_LBRACK, - STATE(431), 1, + STATE(433), 1, aux_sym_dimensions_repeat1, - STATE(567), 1, + STATE(541), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, + STATE(472), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(963), 4, + STATE(960), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1537), 9, + ACTIONS(1550), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51880,7 +51865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1535), 24, + ACTIONS(1548), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -51905,27 +51890,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [3524] = 9, - ACTIONS(464), 1, + [3596] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1527), 1, + ACTIONS(1540), 1, anon_sym_LBRACK, - STATE(431), 1, + STATE(433), 1, aux_sym_dimensions_repeat1, - STATE(518), 1, + STATE(538), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, + STATE(472), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(963), 4, + STATE(960), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1541), 9, + ACTIONS(1554), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51935,7 +51920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1539), 24, + ACTIONS(1552), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -51960,27 +51945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [3588] = 9, - ACTIONS(464), 1, + [3660] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1527), 1, + ACTIONS(1540), 1, anon_sym_LBRACK, - STATE(431), 1, + STATE(433), 1, aux_sym_dimensions_repeat1, - STATE(521), 1, + STATE(513), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, + STATE(472), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(963), 4, + STATE(960), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1545), 9, + ACTIONS(1558), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51990,7 +51975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1543), 24, + ACTIONS(1556), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52015,11 +52000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [3652] = 3, + [3724] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1547), 17, + ACTIONS(1560), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52037,7 +52022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1549), 25, + ACTIONS(1562), 25, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52063,19 +52048,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [3703] = 6, - ACTIONS(1516), 1, + [3775] = 5, + ACTIONS(1380), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1382), 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(1336), 14, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - ACTIONS(1519), 1, + 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(1332), 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_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, - STATE(453), 1, - sym_type_arguments, + anon_sym_COLON_COLON, + anon_sym_when, + [3830] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 16, + ACTIONS(1564), 17, anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -52090,8 +52120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1341), 23, + ACTIONS(1566), 25, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -52112,13 +52143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [3760] = 3, + [3881] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1551), 17, + ACTIONS(1568), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52136,7 +52168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1553), 25, + ACTIONS(1570), 25, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52162,110 +52194,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [3811] = 4, - ACTIONS(1555), 1, - anon_sym_module, + [3932] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(420), 14, + ACTIONS(1499), 18, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - ACTIONS(422), 27, - anon_sym_LPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, + anon_sym_instanceof, + anon_sym_COLON, + anon_sym_when, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + ACTIONS(1501), 24, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - [3864] = 5, - ACTIONS(1367), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1369), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1319), 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_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_when, - [3919] = 3, + anon_sym_SEMI, + anon_sym_AT, + [3983] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1557), 18, + ACTIONS(1572), 18, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52284,7 +52265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1559), 24, + ACTIONS(1574), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52309,21 +52290,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SEMI, anon_sym_AT, - [3970] = 3, + [4034] = 6, + ACTIONS(1546), 1, + anon_sym_DOT, + ACTIONS(1576), 1, + anon_sym_LT, + STATE(453), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1486), 18, + ACTIONS(1542), 16, 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_when, anon_sym_yield, anon_sym_open, @@ -52332,7 +52317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1488), 24, + ACTIONS(1544), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52349,19 +52334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_SEMI, anon_sym_AT, - [4021] = 3, + [4091] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1561), 17, + ACTIONS(1579), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52379,7 +52363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1563), 25, + ACTIONS(1581), 25, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52405,11 +52389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [4072] = 3, + [4142] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1565), 17, + ACTIONS(1583), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52427,7 +52411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1567), 25, + ACTIONS(1585), 25, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -52453,65 +52437,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [4123] = 3, + [4193] = 8, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(1345), 1, + anon_sym_DASH_GT, + ACTIONS(1527), 1, + anon_sym_EQ, + STATE(563), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1569), 17, + ACTIONS(1340), 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(1336), 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(1332), 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_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [4254] = 4, + ACTIONS(1587), 1, sym_identifier, - ACTIONS(1571), 25, - anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(423), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + ACTIONS(425), 26, anon_sym_LPAREN, - 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_DASH_GT, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + [4307] = 4, + ACTIONS(1589), 1, + anon_sym_module, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(423), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, + ACTIONS(425), 27, + anon_sym_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_SEMI, - anon_sym_AT, - [4174] = 6, - ACTIONS(1533), 1, - anon_sym_DOT, - ACTIONS(1573), 1, + [4360] = 6, + ACTIONS(1531), 1, anon_sym_LT, - STATE(451), 1, + ACTIONS(1534), 1, + anon_sym_DOT, + STATE(461), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 16, + ACTIONS(1330), 16, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -52528,7 +52615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1531), 23, + ACTIONS(1354), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52552,60 +52639,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_SEMI, anon_sym_AT, - [4231] = 4, - ACTIONS(1576), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(420), 15, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - ACTIONS(422), 26, - anon_sym_LPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, + [4417] = 4, + ACTIONS(1546), 1, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - [4284] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1578), 17, + ACTIONS(1542), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52623,7 +52663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1580), 24, + ACTIONS(1544), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52645,26 +52685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [4334] = 7, - ACTIONS(1586), 1, - anon_sym_LBRACK, - ACTIONS(1589), 1, - anon_sym_AT, + [4469] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(974), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1584), 9, + ACTIONS(1591), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52673,8 +52700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1582), 24, + anon_sym_instanceof, + anon_sym_when, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + ACTIONS(1593), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52688,22 +52723,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [4392] = 3, + anon_sym_AT, + [4519] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1027), 11, + ACTIONS(1146), 11, sym_binary_integer_literal, sym_decimal_floating_point_literal, sym_character_literal, @@ -52715,7 +52750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1029), 30, + ACTIONS(1148), 30, sym_decimal_integer_literal, sym_hex_integer_literal, sym_octal_integer_literal, @@ -52746,11 +52781,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [4442] = 3, + [4569] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1592), 17, + ACTIONS(1595), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52768,7 +52803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1594), 24, + ACTIONS(1597), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52793,11 +52828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [4492] = 3, + [4619] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1596), 17, + ACTIONS(1599), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52815,7 +52850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1598), 24, + ACTIONS(1601), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52840,32 +52875,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [4542] = 3, + [4669] = 19, + ACTIONS(471), 1, + anon_sym_RPAREN, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(479), 1, + anon_sym_non_DASHsealed, + ACTIONS(1372), 1, + sym_identifier, + STATE(626), 1, + aux_sym_modifiers_repeat1, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(782), 1, + sym__unannotated_type, + STATE(796), 1, + aux_sym_array_creation_expression_repeat1, + STATE(833), 1, + sym_modifiers, + STATE(1298), 1, + sym_receiver_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1602), 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(1600), 33, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(1076), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(718), 3, + sym__annotation, + sym_marker_annotation, + sym_annotation, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(473), 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, @@ -52875,25 +52938,23 @@ 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, - [4592] = 4, - ACTIONS(1533), 1, - anon_sym_DOT, + [4751] = 7, + ACTIONS(1607), 1, + anon_sym_LBRACK, + ACTIONS(1610), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 17, + STATE(472), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(969), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1605), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52902,16 +52963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1531), 23, + anon_sym_COLON, + ACTIONS(1603), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52925,21 +52978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [4644] = 3, + [4809] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 17, + ACTIONS(1613), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52957,7 +53011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1606), 24, + ACTIONS(1615), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52982,60 +53036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [4694] = 19, - ACTIONS(460), 1, - anon_sym_RPAREN, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(1359), 1, - sym_identifier, - STATE(625), 1, - aux_sym_modifiers_repeat1, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(782), 1, - aux_sym_array_creation_expression_repeat1, - STATE(789), 1, - sym__unannotated_type, - STATE(827), 1, - sym_modifiers, - STATE(1200), 1, - sym_receiver_parameter, + [4859] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1109), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(692), 3, - sym__annotation, - sym_marker_annotation, - sym_annotation, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(462), 13, + ACTIONS(1619), 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(1617), 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, @@ -53045,11 +53071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [4776] = 3, + 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, + [4909] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1159), 11, + ACTIONS(742), 11, sym_binary_integer_literal, sym_decimal_floating_point_literal, sym_character_literal, @@ -53061,7 +53099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1161), 30, + ACTIONS(744), 30, sym_decimal_integer_literal, sym_hex_integer_literal, sym_octal_integer_literal, @@ -53092,11 +53130,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [4826] = 3, + [4959] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1608), 17, + ACTIONS(1621), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53114,7 +53152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1610), 23, + ACTIONS(1623), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53138,11 +53176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_SEMI, anon_sym_AT, - [4875] = 3, + [5008] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1612), 17, + ACTIONS(1542), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53160,7 +53198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1614), 23, + ACTIONS(1544), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53184,11 +53222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_SEMI, anon_sym_AT, - [4924] = 3, + [5057] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1616), 17, + ACTIONS(1625), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53206,7 +53244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1618), 23, + ACTIONS(1627), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53230,11 +53268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_SEMI, anon_sym_AT, - [4973] = 3, + [5106] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 17, + ACTIONS(1629), 17, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53252,7 +53290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - ACTIONS(1531), 23, + ACTIONS(1631), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53276,22 +53314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_SEMI, anon_sym_AT, - [5022] = 6, - ACTIONS(1620), 1, + [5155] = 7, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(1633), 1, sym_identifier, - STATE(608), 1, + STATE(596), 1, sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - ACTIONS(1624), 10, + ACTIONS(1637), 10, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53302,7 +53341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_instanceof, anon_sym_when, - ACTIONS(1622), 21, + ACTIONS(1635), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53324,22 +53363,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_SEMI, - [5076] = 16, - ACTIONS(464), 1, + [5211] = 16, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(468), 1, + ACTIONS(479), 1, anon_sym_non_DASHsealed, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - ACTIONS(1626), 1, + ACTIONS(1639), 1, anon_sym_RPAREN, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(808), 1, + STATE(809), 1, sym__unannotated_type, - STATE(827), 1, + STATE(833), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, @@ -53350,14 +53389,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(1079), 2, + STATE(1120), 2, sym_formal_parameter, sym_spread_parameter, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(625), 4, + STATE(626), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53368,7 +53407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(462), 13, + ACTIONS(473), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -53382,22 +53421,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [5150] = 6, - ACTIONS(1628), 1, + [5285] = 7, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(1641), 1, sym_identifier, - STATE(604), 1, + STATE(587), 1, sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - ACTIONS(1632), 10, + ACTIONS(1645), 10, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53408,7 +53448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_instanceof, anon_sym_when, - ACTIONS(1630), 21, + ACTIONS(1643), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53430,64 +53470,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_SEMI, - [5204] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1506), 17, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1508), 21, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_SEMI, - [5251] = 15, - ACTIONS(464), 1, + [5341] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(468), 1, + ACTIONS(479), 1, anon_sym_non_DASHsealed, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(808), 1, + STATE(809), 1, sym__unannotated_type, - STATE(827), 1, + STATE(833), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, @@ -53498,14 +53494,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(1211), 2, + STATE(1212), 2, sym_formal_parameter, sym_spread_parameter, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(625), 4, + STATE(626), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53516,7 +53512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(462), 13, + ACTIONS(473), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -53530,24 +53526,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [5322] = 16, - ACTIONS(464), 1, + [5412] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1523), 17, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_when, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + ACTIONS(1525), 21, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_SEMI, + [5459] = 16, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(468), 1, + ACTIONS(479), 1, anon_sym_non_DASHsealed, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(816), 1, + STATE(820), 1, sym__unannotated_type, - STATE(822), 1, + STATE(825), 1, sym_modifiers, - STATE(889), 1, + STATE(898), 1, sym_catch_type, - STATE(1376), 1, + STATE(1344), 1, sym_catch_formal_parameter, ACTIONS(3), 2, sym_line_comment, @@ -53558,11 +53598,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(625), 4, + STATE(626), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -53573,7 +53613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(462), 13, + ACTIONS(473), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -53587,28 +53627,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [5395] = 11, - ACTIONS(1321), 1, + [5532] = 11, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1329), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1345), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1354), 1, anon_sym_AT, - STATE(569), 1, + STATE(563), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1347), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1323), 8, + ACTIONS(1336), 8, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -53617,7 +53657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1319), 21, + ACTIONS(1332), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53639,21 +53679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [5458] = 6, - ACTIONS(1636), 1, + [5595] = 6, + ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1640), 1, + ACTIONS(1653), 1, anon_sym_DOT, - STATE(549), 1, + STATE(514), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1638), 3, + ACTIONS(1651), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1634), 31, + ACTIONS(1647), 31, anon_sym_final, anon_sym_class, anon_sym_default, @@ -53685,15 +53725,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [5510] = 5, - ACTIONS(1646), 1, + [5647] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(533), 1, + STATE(536), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1644), 9, + ACTIONS(1657), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53703,7 +53743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1642), 25, + ACTIONS(1655), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53729,15 +53769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5559] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(565), 1, - sym_class_body, + [5696] = 5, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(556), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1650), 9, + ACTIONS(1497), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53747,7 +53787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1648), 25, + ACTIONS(1495), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53773,15 +53813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5608] = 5, - ACTIONS(1646), 1, + [5745] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(519), 1, + STATE(535), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1654), 9, + ACTIONS(1663), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53791,7 +53831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1652), 25, + ACTIONS(1661), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53817,15 +53857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5657] = 5, - ACTIONS(1646), 1, + [5794] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(544), 1, + STATE(570), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1658), 9, + ACTIONS(1667), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53835,7 +53875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1656), 25, + ACTIONS(1665), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53861,15 +53901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5706] = 5, - ACTIONS(1646), 1, + [5843] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(514), 1, + STATE(539), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 9, + ACTIONS(1671), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53879,7 +53919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1660), 25, + ACTIONS(1669), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53905,15 +53945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5755] = 5, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(543), 1, - sym_argument_list, + [5892] = 5, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(534), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1480), 9, + ACTIONS(1675), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53923,7 +53963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1478), 25, + ACTIONS(1673), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53949,15 +53989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5804] = 5, - ACTIONS(1646), 1, + [5941] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(545), 1, + STATE(519), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 9, + ACTIONS(1679), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53967,7 +54007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1664), 25, + ACTIONS(1677), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53993,15 +54033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5853] = 5, - ACTIONS(1646), 1, + [5990] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(532), 1, + STATE(520), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 9, + ACTIONS(1683), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54011,7 +54051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1668), 25, + ACTIONS(1681), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54037,15 +54077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5902] = 5, - ACTIONS(1646), 1, + [6039] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(562), 1, + STATE(568), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 9, + ACTIONS(1687), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54055,7 +54095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1672), 25, + ACTIONS(1685), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54081,15 +54121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5951] = 5, - ACTIONS(1321), 1, + [6088] = 6, + ACTIONS(1334), 1, anon_sym_LPAREN, - STATE(541), 1, + ACTIONS(1345), 1, + anon_sym_DASH_GT, + STATE(563), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1484), 9, + ACTIONS(1336), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54099,7 +54141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1482), 25, + ACTIONS(1332), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54114,7 +54156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_instanceof, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, @@ -54125,15 +54166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6000] = 5, - ACTIONS(1646), 1, + [6139] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(516), 1, + STATE(567), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1678), 9, + ACTIONS(1691), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54143,7 +54184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1676), 25, + ACTIONS(1689), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54169,15 +54210,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6049] = 5, - ACTIONS(1646), 1, + [6188] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, + STATE(569), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1695), 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(1693), 25, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, + anon_sym_SEMI, + [6237] = 5, + ACTIONS(1334), 1, + anon_sym_LPAREN, STATE(515), 1, + sym_argument_list, + 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(1491), 25, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, + anon_sym_SEMI, + [6286] = 5, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(548), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1682), 9, + ACTIONS(1699), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54187,7 +54316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1680), 25, + ACTIONS(1697), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54213,15 +54342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6098] = 5, - ACTIONS(1646), 1, + [6335] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(531), 1, + STATE(545), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 9, + ACTIONS(1703), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54231,7 +54360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1684), 25, + ACTIONS(1701), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54257,17 +54386,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6147] = 6, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1332), 1, + [6384] = 7, + ACTIONS(1712), 1, + anon_sym_AT, + ACTIONS(1715), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1707), 2, + anon_sym_LT, + anon_sym_ATinterface, + STATE(503), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1709), 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(1705), 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, + [6436] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1720), 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(1718), 26, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, + anon_sym_SEMI, + anon_sym_AT, + [6480] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(1728), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1724), 2, + anon_sym_LT, + anon_sym_ATinterface, + STATE(503), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1726), 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(1722), 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, + [6532] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 9, + ACTIONS(1732), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54277,50 +54531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1319), 24, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [6198] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(534), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1690), 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(1688), 25, + ACTIONS(1730), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54344,54 +54555,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_when, anon_sym_SEMI, - [6247] = 3, + [6576] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1694), 9, + ACTIONS(1566), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, 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(1692), 26, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_when, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - [6291] = 3, + anon_sym_DOT_DOT_DOT, + ACTIONS(1564), 23, + anon_sym_new, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [6620] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1698), 9, + ACTIONS(1736), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54401,7 +54613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1696), 26, + ACTIONS(1734), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54425,55 +54637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_when, anon_sym_SEMI, - [6335] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1567), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1565), 23, - anon_sym_new, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, - sym_identifier, - [6379] = 3, + [6664] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1563), 12, + ACTIONS(1581), 12, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, @@ -54486,7 +54657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1561), 23, + ACTIONS(1579), 23, anon_sym_new, anon_sym_DOT, sym_underscore_pattern, @@ -54510,11 +54681,11 @@ static const uint16_t ts_small_parse_table[] = { sym_this, sym_super, sym_identifier, - [6423] = 3, + [6708] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1702), 9, + ACTIONS(1740), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54524,7 +54695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1700), 26, + ACTIONS(1738), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54551,41 +54722,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_when, anon_sym_SEMI, - [6467] = 7, - ACTIONS(1711), 1, - anon_sym_AT, - ACTIONS(1714), 1, - anon_sym_non_DASHsealed, + [6752] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1706), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(505), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1708), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, + ACTIONS(1570), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1568), 23, + anon_sym_new, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, anon_sym_sealed, - ACTIONS(1704), 14, - anon_sym_class, - anon_sym_enum, + anon_sym_implements, + anon_sym_permits, anon_sym_record, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -54595,12 +54760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, + sym_this, + sym_super, sym_identifier, - [6519] = 3, + [6796] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1719), 9, + ACTIONS(1744), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54610,7 +54777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1717), 26, + ACTIONS(1742), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54637,52 +54804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_when, anon_sym_SEMI, - [6563] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1571), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1569), 23, - anon_sym_new, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, - sym_identifier, - [6607] = 3, + [6840] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1723), 9, + ACTIONS(1748), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54692,7 +54818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1721), 26, + ACTIONS(1746), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54718,61 +54844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [6651] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(1731), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1727), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(505), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1729), 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(1725), 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, - [6703] = 3, + [6883] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 3, + ACTIONS(1752), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1733), 31, + ACTIONS(1750), 31, anon_sym_final, anon_sym_class, anon_sym_default, @@ -54804,11 +54884,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6746] = 3, + [6926] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1739), 9, + ACTIONS(1756), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54818,7 +54898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1737), 25, + ACTIONS(1754), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54844,17 +54924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6789] = 6, - ACTIONS(1745), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, + [6969] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1743), 9, + ACTIONS(1760), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54864,7 +54938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1741), 22, + ACTIONS(1758), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54884,14 +54958,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6838] = 3, + [7012] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1753), 9, + ACTIONS(1764), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54901,7 +54978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1751), 25, + ACTIONS(1762), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54927,11 +55004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6881] = 3, + [7055] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1757), 9, + ACTIONS(1768), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54941,7 +55018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1755), 25, + ACTIONS(1766), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54967,11 +55044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6924] = 3, + [7098] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1761), 9, + ACTIONS(1772), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54981,7 +55058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1759), 25, + ACTIONS(1770), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55007,11 +55084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6967] = 3, + [7141] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 9, + ACTIONS(1776), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55021,7 +55098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1763), 25, + ACTIONS(1774), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55047,11 +55124,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7010] = 3, + [7184] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 9, + ACTIONS(1780), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1778), 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, + [7227] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1784), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1782), 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, + [7270] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1788), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1786), 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, + [7313] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1792), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55061,7 +55258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1767), 25, + ACTIONS(1790), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55087,11 +55284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7053] = 3, + [7356] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1773), 9, + ACTIONS(1796), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55101,7 +55298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1771), 25, + ACTIONS(1794), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55127,11 +55324,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7096] = 3, + [7399] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 9, + ACTIONS(1800), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55141,7 +55338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1775), 25, + ACTIONS(1798), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55167,11 +55364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7139] = 3, + [7442] = 6, + ACTIONS(1806), 1, + anon_sym_LBRACK, + ACTIONS(1808), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1781), 9, + ACTIONS(1804), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55181,7 +55384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1779), 25, + ACTIONS(1802), 22, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55201,17 +55404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7182] = 3, + [7491] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 9, + ACTIONS(1814), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55221,7 +55421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1783), 25, + ACTIONS(1812), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55247,18 +55447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7225] = 3, + [7534] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1789), 6, + ACTIONS(1818), 6, anon_sym_RBRACE, anon_sym_LT, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1787), 28, + ACTIONS(1816), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -55287,24 +55487,107 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7268] = 3, + [7577] = 6, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1824), 1, + anon_sym_LBRACK, + ACTIONS(1826), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1793), 6, + ACTIONS(1822), 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(1820), 22, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_SEMI, + [7626] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1830), 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(1828), 25, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, + [7669] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1834), 3, + anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1791), 28, + ACTIONS(1832), 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, @@ -55327,51 +55610,51 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7311] = 3, + [7712] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1797), 6, - anon_sym_RBRACE, + ACTIONS(1838), 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(1836), 25, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1795), 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, - [7354] = 3, + [7755] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1801), 9, + ACTIONS(1842), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55381,7 +55664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1799), 25, + ACTIONS(1840), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55407,11 +55690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7397] = 3, + [7798] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 9, + ACTIONS(1846), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55421,7 +55704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1803), 25, + ACTIONS(1844), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55447,11 +55730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7440] = 3, + [7841] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 9, + ACTIONS(1850), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55461,7 +55744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1807), 25, + ACTIONS(1848), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55487,11 +55770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7483] = 3, + [7884] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 9, + ACTIONS(1854), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55501,7 +55784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1811), 25, + ACTIONS(1852), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55527,11 +55810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7526] = 3, + [7927] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1817), 9, + ACTIONS(1858), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55541,7 +55824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1815), 25, + ACTIONS(1856), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55567,11 +55850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7569] = 3, + [7970] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1821), 9, + ACTIONS(1862), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55581,7 +55864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1819), 25, + ACTIONS(1860), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55607,11 +55890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7612] = 3, + [8013] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1825), 9, + ACTIONS(1866), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55621,7 +55904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1823), 25, + ACTIONS(1864), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55647,11 +55930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7655] = 3, + [8056] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1829), 9, + ACTIONS(1870), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55661,7 +55944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1827), 25, + ACTIONS(1868), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55687,98 +55970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7698] = 3, + [8099] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1833), 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(1831), 25, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [7741] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1837), 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(1835), 25, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [7784] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1841), 6, + ACTIONS(1874), 6, anon_sym_RBRACE, anon_sym_LT, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1839), 28, + ACTIONS(1872), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -55807,18 +56010,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7827] = 3, + [8142] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 6, + ACTIONS(1878), 6, anon_sym_RBRACE, anon_sym_LT, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1843), 28, + ACTIONS(1876), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -55847,18 +56050,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7870] = 3, + [8185] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1849), 6, + ACTIONS(1882), 6, anon_sym_RBRACE, anon_sym_LT, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1847), 28, + ACTIONS(1880), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -55887,131 +56090,51 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7913] = 3, + [8228] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1853), 6, - anon_sym_RBRACE, + ACTIONS(1886), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1851), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - 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, - [7956] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1857), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1884), 25, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1855), 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, - [7999] = 3, + [8271] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1861), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1859), 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, - [8042] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1865), 9, + ACTIONS(1890), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56021,7 +56144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1863), 25, + ACTIONS(1888), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56047,11 +56170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8085] = 3, + [8314] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1869), 9, + ACTIONS(1894), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56061,7 +56184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1867), 25, + ACTIONS(1892), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56087,11 +56210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8128] = 3, + [8357] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1873), 9, + ACTIONS(1898), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56101,7 +56224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1871), 25, + ACTIONS(1896), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56127,11 +56250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8171] = 3, + [8400] = 6, + ACTIONS(1806), 1, + anon_sym_LBRACK, + ACTIONS(1808), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1877), 9, + ACTIONS(493), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56141,7 +56270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1875), 25, + ACTIONS(495), 22, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56161,17 +56290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8214] = 3, + [8449] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 9, + ACTIONS(1902), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56181,7 +56307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1879), 25, + ACTIONS(1900), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56207,36 +56333,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8257] = 3, + [8492] = 5, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1885), 6, - anon_sym_RBRACE, + ACTIONS(1246), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1883), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + ACTIONS(1907), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1904), 11, anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -56247,23 +56357,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8300] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1889), 6, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1887), 28, + ACTIONS(1244), 17, anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_enum, anon_sym_public, @@ -56277,65 +56375,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8343] = 3, + [8539] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1893), 6, - anon_sym_RBRACE, + ACTIONS(1493), 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(1491), 25, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1891), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8386] = 3, + [8582] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1897), 3, + ACTIONS(1911), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1895), 31, + ACTIONS(1909), 31, anon_sym_final, anon_sym_class, anon_sym_default, @@ -56367,11 +56455,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8429] = 3, + [8625] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1901), 9, + ACTIONS(1915), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56381,7 +56469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1899), 25, + ACTIONS(1913), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56407,11 +56495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8472] = 3, + [8668] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 9, + ACTIONS(1517), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56421,7 +56509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1903), 25, + ACTIONS(1515), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56447,51 +56535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8515] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1909), 6, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1907), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8558] = 3, + [8711] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1913), 9, + ACTIONS(1919), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56501,7 +56549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1911), 25, + ACTIONS(1917), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56527,23 +56575,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8601] = 3, + [8754] = 11, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1350), 1, + anon_sym_DOT, + ACTIONS(1354), 1, + anon_sym_AT, + ACTIONS(1384), 1, + anon_sym_DASH_GT, + STATE(563), 1, + sym_argument_list, + STATE(734), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 9, + ACTIONS(1347), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1336), 8, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1915), 25, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1332), 17, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -56556,22 +56618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_instanceof, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_when, - anon_sym_SEMI, - [8644] = 3, + [8813] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 9, + ACTIONS(1497), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56581,7 +56637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1919), 25, + ACTIONS(1495), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56607,11 +56663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8687] = 3, + [8856] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1925), 9, + ACTIONS(1923), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56621,7 +56677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1923), 25, + ACTIONS(1921), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56647,17 +56703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8730] = 6, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_DOT, + [8899] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1929), 9, + ACTIONS(1927), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56667,7 +56717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1927), 22, + ACTIONS(1925), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56687,14 +56737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8779] = 3, + [8942] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1480), 9, + ACTIONS(1931), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56704,7 +56757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1478), 25, + ACTIONS(1929), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56730,11 +56783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8822] = 3, + [8985] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1512), 9, + ACTIONS(1336), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56744,7 +56797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1510), 25, + ACTIONS(1332), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56770,59 +56823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8865] = 11, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1371), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1323), 8, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1319), 17, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_when, - [8924] = 3, + [9028] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1484), 9, + ACTIONS(1935), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56832,7 +56837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1482), 25, + ACTIONS(1933), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56858,51 +56863,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8967] = 3, + [9071] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1937), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1939), 3, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1935), 25, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [9010] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1937), 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, + [9114] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1941), 9, + ACTIONS(1943), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56912,7 +56917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1939), 25, + ACTIONS(1941), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56938,11 +56943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9053] = 3, + [9157] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1945), 9, + ACTIONS(1947), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56952,7 +56957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1943), 25, + ACTIONS(1945), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56978,11 +56983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9096] = 3, + [9200] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1949), 9, + ACTIONS(1951), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56992,7 +56997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1947), 25, + ACTIONS(1949), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57018,11 +57023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9139] = 3, + [9243] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1953), 9, + ACTIONS(1955), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57032,7 +57037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1951), 25, + ACTIONS(1953), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57058,11 +57063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9182] = 3, + [9286] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1957), 9, + ACTIONS(1959), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57072,7 +57077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1955), 25, + ACTIONS(1957), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57098,11 +57103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9225] = 3, + [9329] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 9, + ACTIONS(1963), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57112,7 +57117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1319), 25, + ACTIONS(1961), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57138,104 +57143,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9268] = 3, + [9372] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1961), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1967), 6, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1959), 25, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1965), 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, + [9415] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1971), 6, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, + anon_sym_LT, + anon_sym_LBRACE, anon_sym_SEMI, - [9311] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1969), 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, + [9458] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1965), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1975), 6, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1963), 25, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1973), 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, + [9501] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1979), 6, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, + anon_sym_LT, + anon_sym_LBRACE, anon_sym_SEMI, - [9354] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1977), 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, + [9544] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1969), 3, + ACTIONS(1983), 6, + anon_sym_RBRACE, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1967), 31, + ACTIONS(1981), 28, anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, - anon_sym_open, - anon_sym_module, anon_sym_static, - anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, @@ -57258,17 +57343,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9397] = 6, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_DOT, + [9587] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(482), 9, + ACTIONS(1987), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57278,7 +57357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(484), 22, + ACTIONS(1985), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57298,14 +57377,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9446] = 3, + [9630] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1973), 9, + ACTIONS(1991), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57315,7 +57397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1971), 25, + ACTIONS(1989), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57341,53 +57423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9489] = 5, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1235), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1978), 3, - anon_sym_open, - anon_sym_module, - anon_sym_package, - ACTIONS(1975), 11, - anon_sym_AT, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - ACTIONS(1233), 17, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - [9536] = 3, + [9673] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 9, + ACTIONS(1995), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57397,7 +57437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1980), 25, + ACTIONS(1993), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57423,17 +57463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9579] = 3, + [9716] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 5, + ACTIONS(1999), 5, anon_sym_RBRACE, anon_sym_LT, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1984), 28, + ACTIONS(1997), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57462,19 +57502,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9621] = 5, - ACTIONS(651), 1, + [9758] = 5, + ACTIONS(662), 1, anon_sym_LPAREN, - STATE(1278), 1, + STATE(1195), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1235), 3, + ACTIONS(1246), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1233), 28, + ACTIONS(1244), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57503,17 +57543,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9667] = 3, + [9804] = 5, + ACTIONS(35), 1, + anon_sym_LBRACE, + STATE(542), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 5, - anon_sym_RBRACE, + ACTIONS(1246), 3, anon_sym_LT, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1988), 28, + ACTIONS(1244), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57542,19 +57584,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9709] = 5, - ACTIONS(35), 1, - anon_sym_LBRACE, - STATE(522), 1, - sym_block, + [9850] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1235), 3, + ACTIONS(2003), 5, + anon_sym_RBRACE, anon_sym_LT, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1233), 28, + ACTIONS(2001), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57583,22 +57623,22 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9755] = 7, - ACTIONS(464), 1, + [9892] = 7, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - STATE(582), 1, + STATE(584), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1498), 10, + ACTIONS(1511), 10, anon_sym_RPAREN, anon_sym_AMP, anon_sym_EQ, @@ -57609,7 +57649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - ACTIONS(1496), 15, + ACTIONS(1509), 15, anon_sym_COLON, anon_sym_DOT, anon_sym_default, @@ -57625,17 +57665,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throws, sym_this, sym_identifier, - [9804] = 6, - ACTIONS(1321), 1, + [9941] = 7, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(2007), 1, + anon_sym_LBRACK, + STATE(584), 1, + aux_sym_dimensions_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1501), 10, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + ACTIONS(1499), 15, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + [9990] = 6, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1371), 1, + ACTIONS(1384), 1, anon_sym_DASH_GT, - STATE(569), 1, + STATE(563), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 9, + ACTIONS(1336), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57645,7 +57727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1319), 20, + ACTIONS(1332), 20, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -57666,108 +57748,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_when, - [9851] = 7, - ACTIONS(1493), 1, - anon_sym_AT, - ACTIONS(1994), 1, - anon_sym_LBRACK, - STATE(582), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1488), 10, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - ACTIONS(1486), 15, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - sym_underscore_pattern, + [10037] = 18, + ACTIONS(433), 1, anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - [9900] = 17, - ACTIONS(424), 1, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1997), 1, + ACTIONS(2010), 1, sym_identifier, - ACTIONS(1999), 1, + ACTIONS(2012), 1, anon_sym_final, - STATE(435), 1, + STATE(437), 1, sym__unannotated_type, - STATE(447), 1, + STATE(449), 1, sym_generic_type, - STATE(461), 1, + STATE(459), 1, sym_scoped_type_identifier, - STATE(477), 1, - sym__type, STATE(480), 1, + sym__type, + STATE(484), 1, sym_annotated_type, - STATE(589), 1, + STATE(601), 1, sym_record_pattern, - STATE(1205), 1, + STATE(1221), 1, sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 2, + ACTIONS(2016), 2, anon_sym_float, anon_sym_double, - ACTIONS(2005), 2, + ACTIONS(2018), 2, sym_boolean_type, sym_void_type, - STATE(476), 3, + STATE(477), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(784), 4, + STATE(798), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2001), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [9969] = 4, + ACTIONS(2014), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [10108] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2009), 8, + ACTIONS(2022), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57776,7 +57814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2007), 21, + ACTIONS(2020), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57795,14 +57833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10011] = 3, + [10148] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(482), 8, + ACTIONS(1804), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57811,7 +57851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(484), 23, + ACTIONS(1802), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57835,11 +57875,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10051] = 3, + [10188] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2026), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(2024), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [10228] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2015), 8, + ACTIONS(2030), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57848,7 +57925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2013), 23, + ACTIONS(2028), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57872,16 +57949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10091] = 3, + [10268] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2019), 4, + ACTIONS(2034), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(2017), 27, + ACTIONS(2032), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57909,61 +57986,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10131] = 16, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1997), 1, - sym_identifier, - STATE(435), 1, - sym__unannotated_type, - STATE(447), 1, - sym_generic_type, - STATE(461), 1, - sym_scoped_type_identifier, - STATE(479), 1, - sym__type, - STATE(480), 1, - sym_annotated_type, - STATE(603), 1, - sym_record_pattern, - STATE(1205), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2003), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2005), 2, - sym_boolean_type, - sym_void_type, - STATE(476), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(784), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2001), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [10197] = 3, + [10308] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 8, + ACTIONS(2038), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57972,7 +57999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2021), 23, + ACTIONS(2036), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57996,11 +58023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10237] = 3, + [10348] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2027), 8, + ACTIONS(2042), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58009,7 +58036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2025), 23, + ACTIONS(2040), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58033,16 +58060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10277] = 3, + [10388] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2031), 4, + ACTIONS(2046), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(2029), 27, + ACTIONS(2044), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -58070,127 +58097,128 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10317] = 3, + [10428] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2035), 4, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1804), 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(1802), 21, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2033), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10357] = 3, + [10470] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2039), 4, + ACTIONS(2052), 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(2050), 23, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2037), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10397] = 3, + [10510] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2043), 4, + ACTIONS(2056), 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(2054), 23, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2041), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10437] = 3, + [10550] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2047), 4, + ACTIONS(2060), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(2045), 27, + ACTIONS(2058), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -58218,16 +58246,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10477] = 3, + [10590] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2051), 4, + ACTIONS(2064), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(2049), 27, + ACTIONS(2062), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -58255,16 +58283,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10517] = 3, + [10630] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 4, + ACTIONS(2068), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(2053), 27, + ACTIONS(2066), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -58292,11 +58320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10557] = 3, + [10670] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2059), 8, + ACTIONS(2072), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58305,7 +58333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2057), 23, + ACTIONS(2070), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58329,14 +58357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10597] = 4, + [10710] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1929), 8, + ACTIONS(1822), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58345,7 +58370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1927), 21, + ACTIONS(1820), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58364,14 +58389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10639] = 3, + [10750] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1929), 8, + ACTIONS(493), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58380,7 +58407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1927), 23, + ACTIONS(495), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58404,11 +58431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10679] = 3, + [10790] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2015), 8, + ACTIONS(2076), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58417,7 +58444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2013), 23, + ACTIONS(2074), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58441,11 +58468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10719] = 3, + [10830] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1743), 8, + ACTIONS(2080), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58454,7 +58481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1741), 23, + ACTIONS(2078), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58478,11 +58505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10759] = 3, + [10870] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2063), 8, + ACTIONS(2076), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58491,7 +58518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2061), 23, + ACTIONS(2074), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58515,11 +58542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10799] = 3, + [10910] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 8, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2084), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58528,7 +58558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2065), 23, + ACTIONS(2082), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58547,16 +58577,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_when, anon_sym_SEMI, - [10839] = 3, + [10952] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 8, + ACTIONS(2088), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58565,7 +58593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2069), 23, + ACTIONS(2086), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58589,11 +58617,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10879] = 3, + [10992] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2092), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(2090), 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, + [11032] = 17, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(2010), 1, + sym_identifier, + STATE(437), 1, + sym__unannotated_type, + STATE(449), 1, + sym_generic_type, + STATE(459), 1, + sym_scoped_type_identifier, + STATE(482), 1, + sym__type, + STATE(484), 1, + sym_annotated_type, + STATE(611), 1, + sym_record_pattern, + STATE(1221), 1, + sym__reserved_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2016), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2018), 2, + sym_boolean_type, + sym_void_type, + STATE(477), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(798), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(69), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + ACTIONS(2014), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [11100] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2075), 8, + ACTIONS(2096), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58602,7 +58718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2073), 23, + ACTIONS(2094), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58626,11 +58742,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10919] = 3, + [11140] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2100), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(2098), 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, + [11180] = 5, + ACTIONS(2105), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 8, + ACTIONS(2102), 2, + anon_sym_DASH_GT, + anon_sym_when, + ACTIONS(1740), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58639,9 +58797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2077), 23, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1738), 19, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -58654,66 +58810,39 @@ 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_RBRACK, - anon_sym_when, - anon_sym_SEMI, - [10959] = 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [11223] = 9, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 8, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(2081), 23, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2110), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(2114), 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_when, - anon_sym_SEMI, - [10999] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2087), 8, + ACTIONS(2084), 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(2085), 23, + ACTIONS(2082), 16, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58722,65 +58851,58 @@ 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_when, anon_sym_SEMI, - [11039] = 18, - ACTIONS(2091), 1, + [11274] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2089), 7, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2118), 7, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, @@ -58788,184 +58910,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11108] = 15, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2107), 1, + [11343] = 18, + ACTIONS(2112), 1, anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 10, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_when, - anon_sym_SEMI, - [11171] = 15, - ACTIONS(2009), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2007), 10, + ACTIONS(2036), 7, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11234] = 5, - ACTIONS(2124), 1, - anon_sym_COLON, + [11412] = 6, + ACTIONS(2112), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 2, - anon_sym_DASH_GT, - anon_sym_when, - ACTIONS(1702), 8, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2084), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1700), 19, + ACTIONS(2082), 18, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [11277] = 18, - ACTIONS(2091), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_SEMI, + [11457] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2127), 7, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2140), 7, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, @@ -58973,44 +59051,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11346] = 14, - ACTIONS(2009), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2107), 1, + [11526] = 12, + ACTIONS(2112), 1, anon_sym_SLASH, - ACTIONS(2115), 1, + ACTIONS(2116), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2084), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 11, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2082), 13, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -59020,218 +59096,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11407] = 7, - ACTIONS(2107), 1, + [11583] = 15, + ACTIONS(2112), 1, anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2009), 5, - anon_sym_AMP, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(2007), 18, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2082), 10, + anon_sym_RBRACE, + 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_when, anon_sym_SEMI, - [11454] = 16, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, + [11646] = 13, + ACTIONS(2112), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2116), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2084), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 9, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2082), 11, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11519] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + [11705] = 15, + ACTIONS(2084), 1, anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2085), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_when, - anon_sym_SEMI, - [11588] = 13, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2009), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2007), 11, + ACTIONS(2082), 10, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11647] = 9, - ACTIONS(2107), 1, + [11768] = 7, + ACTIONS(2112), 1, anon_sym_SLASH, - ACTIONS(2115), 1, - anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2009), 4, + ACTIONS(2084), 5, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, - ACTIONS(2007), 16, + anon_sym_GT_GT, + ACTIONS(2082), 18, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -59241,6 +59269,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, @@ -59248,42 +59278,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11698] = 12, - ACTIONS(2107), 1, + [11815] = 14, + ACTIONS(2084), 1, + anon_sym_PIPE, + ACTIONS(2112), 1, anon_sym_SLASH, - ACTIONS(2115), 1, + ACTIONS(2116), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2136), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2009), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 13, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2082), 11, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -59293,124 +59325,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11755] = 6, - ACTIONS(2107), 1, + [11876] = 16, + ACTIONS(2112), 1, anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2105), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2009), 7, - anon_sym_AMP, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(2007), 18, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, + ACTIONS(2082), 9, + anon_sym_RBRACE, + anon_sym_RPAREN, 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_when, anon_sym_SEMI, - [11800] = 6, - ACTIONS(2129), 1, - anon_sym_LPAREN, - ACTIONS(2131), 1, - anon_sym_DOT, - STATE(663), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1638), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1634), 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, - [11844] = 5, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(1351), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1323), 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(1319), 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_COLON_COLON, - anon_sym_SEMI, - [11886] = 6, - ACTIONS(464), 1, + [11941] = 6, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2135), 1, + ACTIONS(2144), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, @@ -59420,7 +59387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1725), 10, + ACTIONS(1722), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -59431,7 +59398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(2133), 13, + ACTIONS(2142), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -59445,64 +59412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [11930] = 22, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2137), 1, - anon_sym_AMP, - ACTIONS(2145), 1, - anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, - anon_sym_SLASH, - ACTIONS(2155), 1, - anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, - anon_sym_GT_GT, - ACTIONS(2165), 1, - anon_sym_COMMA, - ACTIONS(2167), 1, - anon_sym_QMARK, - ACTIONS(2169), 1, - anon_sym_when, - STATE(946), 1, - aux_sym_argument_list_repeat1, - STATE(1273), 1, - sym_guard, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2139), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2141), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2143), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2163), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [12006] = 6, - ACTIONS(2174), 1, + [11985] = 6, + ACTIONS(2149), 1, anon_sym_AT, - ACTIONS(2177), 1, + ACTIONS(2152), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, @@ -59512,7 +59425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1704), 10, + ACTIONS(1705), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -59523,7 +59436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(2171), 13, + ACTIONS(2146), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -59537,17 +59450,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [12050] = 3, + [12029] = 6, + ACTIONS(2155), 1, + anon_sym_LPAREN, + ACTIONS(2157), 1, + anon_sym_DOT, + STATE(686), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1602), 5, - anon_sym_LPAREN, + ACTIONS(1651), 3, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1600), 23, + ACTIONS(1647), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -59571,345 +59488,311 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [12087] = 4, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2121), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1702), 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(1700), 18, - 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, + [12073] = 22, + ACTIONS(2136), 1, anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [12126] = 22, - ACTIONS(2091), 1, + ACTIONS(2159), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2163), 1, - anon_sym_COLON, - ACTIONS(2180), 1, + ACTIONS(2187), 1, anon_sym_COMMA, - ACTIONS(2182), 1, + ACTIONS(2189), 1, + anon_sym_QMARK, + ACTIONS(2191), 1, anon_sym_when, - STATE(982), 1, + STATE(979), 1, aux_sym_argument_list_repeat1, - STATE(1273), 1, + STATE(1286), 1, sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12201] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, + ACTIONS(2185), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [12149] = 5, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(1338), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(1336), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1332), 19, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2113), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2184), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_when, - [12267] = 18, - ACTIONS(2117), 1, anon_sym_instanceof, - ACTIONS(2137), 1, - anon_sym_AMP, - ACTIONS(2145), 1, - anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, - anon_sym_SLASH, - ACTIONS(2155), 1, - anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, - anon_sym_GT_GT, - ACTIONS(2167), 1, anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + [12191] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2102), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1740), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1738), 18, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2159), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2184), 4, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_when, - [12333] = 18, - ACTIONS(2117), 1, anon_sym_instanceof, - ACTIONS(2137), 1, - anon_sym_AMP, - ACTIONS(2145), 1, - anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, - anon_sym_SLASH, - ACTIONS(2155), 1, - anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, - anon_sym_GT_GT, - ACTIONS(2167), 1, anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [12230] = 6, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_DOT, + STATE(699), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2139), 2, - anon_sym_GT, + ACTIONS(1651), 7, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LT, - ACTIONS(2141), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2143), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2127), 4, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_when, - [12399] = 18, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2137), 1, + anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1647), 18, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_package, + anon_sym_sealed, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [12273] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1619), 5, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1617), 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, + [12310] = 22, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2145), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2147), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, - anon_sym_SLASH, - ACTIONS(2155), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2157), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2161), 1, - anon_sym_GT_GT, - ACTIONS(2167), 1, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, anon_sym_QMARK, + ACTIONS(2185), 1, + anon_sym_COLON, + ACTIONS(2197), 1, + anon_sym_COMMA, + ACTIONS(2199), 1, + anon_sym_when, + STATE(991), 1, + aux_sym_argument_list_repeat1, + STATE(1286), 1, + sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2141), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2143), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2089), 4, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_when, - [12465] = 18, - ACTIONS(2117), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12385] = 14, + ACTIONS(2084), 1, + anon_sym_PIPE, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2159), 1, anon_sym_AMP, - ACTIONS(2145), 1, - anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2155), 1, - anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, - ACTIONS(2167), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2085), 4, + ACTIONS(2082), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12531] = 6, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(1931), 1, + [12443] = 6, + ACTIONS(1806), 1, anon_sym_LBRACK, - ACTIONS(2186), 1, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(2201), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(482), 8, + ACTIONS(493), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -59918,7 +59801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(484), 16, + ACTIONS(495), 16, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -59935,11 +59818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - [12573] = 3, + [12485] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1488), 12, + ACTIONS(1574), 12, anon_sym_RPAREN, anon_sym_AMP, anon_sym_EQ, @@ -59952,7 +59835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1486), 15, + ACTIONS(1572), 15, anon_sym_COLON, anon_sym_DOT, anon_sym_default, @@ -59968,239 +59851,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throws, sym_this, sym_identifier, - [12609] = 13, - ACTIONS(2117), 1, + [12521] = 18, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2153), 1, + ACTIONS(2159), 1, + anon_sym_AMP, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2161), 1, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2179), 1, + anon_sym_CARET, + ACTIONS(2183), 1, anon_sym_GT_GT, + ACTIONS(2189), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2009), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2140), 4, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12665] = 14, - ACTIONS(518), 1, - sym_underscore_pattern, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2190), 1, - anon_sym_RPAREN, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(830), 1, - sym__unannotated_type, - STATE(871), 1, - sym_generic_type, - STATE(1205), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1154), 2, - sym_record_pattern, - sym_record_pattern_component, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [12723] = 12, - ACTIONS(2117), 1, + [12587] = 18, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2153), 1, + ACTIONS(2159), 1, + anon_sym_AMP, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2161), 1, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2179), 1, + anon_sym_CARET, + ACTIONS(2183), 1, anon_sym_GT_GT, + ACTIONS(2189), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2009), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2149), 2, + ACTIONS(2165), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 10, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2036), 4, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12777] = 15, - ACTIONS(2117), 1, + [12653] = 13, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2137), 1, - anon_sym_AMP, - ACTIONS(2153), 1, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2155), 1, - anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2084), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 7, + ACTIONS(2082), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12837] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1559), 12, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1557), 15, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - [12873] = 9, - ACTIONS(2153), 1, + [12709] = 9, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2161), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2149), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2009), 4, + ACTIONS(2084), 4, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, - ACTIONS(2007), 13, + ACTIONS(2082), 13, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -60214,113 +60029,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12921] = 16, - ACTIONS(2117), 1, + [12757] = 12, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2175), 1, + anon_sym_SLASH, + ACTIONS(2183), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2084), 2, anon_sym_AMP, - ACTIONS(2145), 1, + anon_sym_PIPE, + ACTIONS(2161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2163), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2173), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2181), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2082), 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(2153), 1, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_when, + [12811] = 15, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2159), 1, + anon_sym_AMP, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2155), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2157), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 6, + ACTIONS(2082), 7, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12983] = 18, - ACTIONS(2091), 1, + [12871] = 16, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2159), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2192), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2082), 6, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_SEMI, - [13049] = 6, - ACTIONS(2153), 1, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_when, + [12933] = 6, + ACTIONS(2175), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2151), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2009), 7, + ACTIONS(2084), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -60328,7 +60182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2007), 15, + ACTIONS(2082), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -60344,44 +60198,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [13091] = 15, - ACTIONS(2009), 1, + [12975] = 15, + ACTIONS(2084), 1, anon_sym_PIPE, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2159), 1, anon_sym_AMP, - ACTIONS(2153), 1, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2157), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 7, + ACTIONS(2082), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_DASH_GT, @@ -60389,148 +60243,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [13151] = 14, - ACTIONS(2009), 1, - anon_sym_PIPE, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2137), 1, - anon_sym_AMP, - ACTIONS(2153), 1, + [13035] = 7, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2161), 1, - anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2173), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2084), 5, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(2082), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2007), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [13209] = 7, - ACTIONS(2153), 1, + [13079] = 18, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2159), 1, + anon_sym_AMP, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2175), 1, anon_sym_SLASH, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2179), 1, + anon_sym_CARET, + ACTIONS(2183), 1, + anon_sym_GT_GT, + ACTIONS(2189), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2009), 5, - anon_sym_AMP, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(2007), 15, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2173), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + ACTIONS(2203), 4, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [13253] = 20, - ACTIONS(2091), 1, + [13145] = 18, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2159), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - ACTIONS(2194), 1, - anon_sym_COMMA, - ACTIONS(2196), 1, - anon_sym_SEMI, - STATE(1169), 1, - aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13322] = 13, - ACTIONS(518), 1, + ACTIONS(2118), 4, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_when, + [13211] = 15, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(529), 1, sym_underscore_pattern, - ACTIONS(2188), 1, + ACTIONS(2205), 1, sym_identifier, - STATE(695), 1, + ACTIONS(2207), 1, + anon_sym_RPAREN, + STATE(709), 1, sym_scoped_type_identifier, - STATE(830), 1, + STATE(841), 1, sym__unannotated_type, - STATE(871), 1, + STATE(875), 1, sym_generic_type, - STATE(1205), 1, + STATE(1221), 1, sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, @@ -60541,139 +60402,268 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(1292), 2, + STATE(1094), 2, sym_record_pattern, sym_record_pattern_component, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, + ACTIONS(69), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, ACTIONS(87), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(69), 6, + [13271] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(425), 9, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(423), 18, + sym_underscore_pattern, anon_sym_yield, anon_sym_open, anon_sym_module, anon_sym_with, + anon_sym_package, anon_sym_sealed, anon_sym_record, - [13377] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2194), 1, - anon_sym_COMMA, - ACTIONS(2198), 1, - anon_sym_SEMI, - STATE(1128), 1, - aux_sym_for_statement_repeat1, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [13307] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, + ACTIONS(425), 9, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [13446] = 18, - ACTIONS(2091), 1, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(423), 18, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_package, + anon_sym_sealed, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [13343] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1619), 9, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1617), 18, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_package, + anon_sym_sealed, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [13379] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2203), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_when, + [13445] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2200), 3, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2209), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + [13511] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1501), 12, anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, - [13511] = 15, - ACTIONS(424), 1, anon_sym_AT, - ACTIONS(1359), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1499), 15, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, sym_identifier, - ACTIONS(2202), 1, - anon_sym_GT, - ACTIONS(2204), 1, - anon_sym_QMARK, - STATE(695), 1, + [13547] = 14, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(529), 1, + sym_underscore_pattern, + ACTIONS(2205), 1, + sym_identifier, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(834), 1, + STATE(841), 1, sym__unannotated_type, - STATE(906), 1, - sym_annotated_type, + STATE(875), 1, + sym_generic_type, + STATE(1221), 1, + sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -60683,417 +60673,181 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(1099), 2, - sym_wildcard, - sym__type, - STATE(753), 3, + STATE(1198), 2, + sym_record_pattern, + sym_record_pattern_component, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(768), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, + ACTIONS(69), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, ACTIONS(87), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13570] = 20, - ACTIONS(2091), 1, + [13604] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2206), 1, + ACTIONS(2211), 1, anon_sym_RPAREN, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - STATE(1083), 1, + STATE(1173), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13639] = 12, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(2210), 1, - sym_identifier, - ACTIONS(2212), 1, - anon_sym_RBRACE, - ACTIONS(2214), 1, - anon_sym_COMMA, - ACTIONS(2216), 1, - anon_sym_SEMI, - STATE(1005), 1, - sym_enum_constant, - STATE(1355), 1, - sym_enum_body_declarations, - STATE(1358), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(625), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(462), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [13692] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2218), 1, - anon_sym_RPAREN, - STATE(1086), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [13761] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + [13673] = 20, + ACTIONS(2112), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2116), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2180), 1, - anon_sym_COMMA, - ACTIONS(2220), 1, - anon_sym_RPAREN, - STATE(1126), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [13830] = 20, - ACTIONS(2091), 1, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2222), 1, + ACTIONS(2215), 1, anon_sym_RPAREN, - STATE(1105), 1, + STATE(1085), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13899] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2224), 1, - anon_sym_RPAREN, - STATE(1113), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [13968] = 20, - ACTIONS(2091), 1, + [13742] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2217), 1, anon_sym_COMMA, - ACTIONS(2226), 1, - anon_sym_RPAREN, - STATE(1175), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2219), 1, + anon_sym_SEMI, + STATE(1109), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14037] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2228), 1, - anon_sym_RBRACE, - ACTIONS(2230), 1, - anon_sym_COMMA, - STATE(1073), 1, - aux_sym_array_initializer_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [14106] = 3, + [13811] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1897), 3, + ACTIONS(1939), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1895), 23, + ACTIONS(1937), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -61117,64 +60871,64 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14141] = 20, - ACTIONS(2091), 1, + [13846] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2194), 1, + ACTIONS(2197), 1, anon_sym_COMMA, - ACTIONS(2232), 1, - anon_sym_SEMI, - STATE(1063), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2221), 1, + anon_sym_RPAREN, + STATE(1169), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14210] = 3, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13915] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 3, + ACTIONS(1911), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1733), 23, + ACTIONS(1909), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -61198,15 +60952,15 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14245] = 3, + [13950] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1861), 3, + ACTIONS(1834), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1859), 23, + ACTIONS(1832), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -61230,14 +60984,63 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14280] = 4, + [13985] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(2223), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14054] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(480), 2, + ACTIONS(491), 2, anon_sym_while, anon_sym_else, - ACTIONS(482), 8, + ACTIONS(493), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -61246,7 +61049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(484), 16, + ACTIONS(495), 16, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -61263,1195 +61066,1396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_SEMI, - [14317] = 15, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2204), 1, - anon_sym_QMARK, - ACTIONS(2234), 1, - anon_sym_GT, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(834), 1, - sym__unannotated_type, - STATE(906), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1095), 2, - sym_wildcard, - sym__type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(768), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14376] = 20, - ACTIONS(2091), 1, + [14091] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2236), 1, + ACTIONS(2225), 1, anon_sym_RPAREN, - STATE(1076), 1, + STATE(1114), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14445] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14160] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2238), 1, - anon_sym_RPAREN, - STATE(1084), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14514] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2227), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + [14225] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2229), 1, + anon_sym_RBRACE, + ACTIONS(2231), 1, anon_sym_COMMA, - ACTIONS(2240), 1, - anon_sym_RPAREN, - STATE(1110), 1, - aux_sym_for_statement_repeat2, + STATE(1122), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14583] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14294] = 15, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(2233), 1, + anon_sym_GT, + ACTIONS(2235), 1, + anon_sym_QMARK, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(839), 1, + sym__unannotated_type, + STATE(923), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(1081), 2, + sym_wildcard, + sym__type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(779), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14353] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2242), 1, + ACTIONS(2237), 1, anon_sym_RPAREN, - STATE(1136), 1, + STATE(1171), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14652] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14422] = 12, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(479), 1, + anon_sym_non_DASHsealed, + ACTIONS(2239), 1, + sym_identifier, + ACTIONS(2241), 1, + anon_sym_RBRACE, + ACTIONS(2243), 1, + anon_sym_COMMA, + ACTIONS(2245), 1, + anon_sym_SEMI, + STATE(1004), 1, + sym_enum_constant, + STATE(1353), 1, + sym_enum_body_declarations, + STATE(1355), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(626), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(473), 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, + [14475] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2244), 1, + ACTIONS(2247), 1, anon_sym_RPAREN, - STATE(1140), 1, + STATE(1077), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14721] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14544] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2246), 1, + ACTIONS(2249), 1, anon_sym_RPAREN, - STATE(1142), 1, + STATE(1133), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14790] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14613] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2248), 1, + ACTIONS(2251), 1, anon_sym_RPAREN, - STATE(1143), 1, + STATE(1136), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14859] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14682] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2250), 1, + ACTIONS(2253), 1, anon_sym_RPAREN, - STATE(1146), 1, + STATE(1138), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14928] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14751] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2252), 1, + ACTIONS(2255), 1, anon_sym_RPAREN, - STATE(1147), 1, + STATE(1139), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14997] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14820] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2254), 1, + ACTIONS(2257), 1, anon_sym_RPAREN, - STATE(1148), 1, + STATE(1141), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15066] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14889] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2256), 1, + ACTIONS(2259), 1, anon_sym_RPAREN, - STATE(1149), 1, + STATE(1142), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15135] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14958] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2258), 1, + ACTIONS(2261), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1143), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + [15027] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(2263), 1, + anon_sym_RPAREN, + STATE(1144), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15204] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15096] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2260), 1, + ACTIONS(2265), 1, anon_sym_RPAREN, - STATE(1155), 1, + STATE(1150), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + [15165] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(2267), 1, + anon_sym_RPAREN, + STATE(1154), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15273] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15234] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2262), 1, + ACTIONS(2269), 1, anon_sym_RPAREN, STATE(1156), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15342] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15303] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2264), 1, + ACTIONS(2271), 1, anon_sym_RPAREN, STATE(1157), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15411] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15372] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1752), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1750), 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, + [15407] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_RPAREN, STATE(1159), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15480] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15476] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_RPAREN, STATE(1160), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15549] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15545] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2270), 1, + ACTIONS(2277), 1, anon_sym_RPAREN, STATE(1161), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15618] = 20, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15614] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(2272), 1, + ACTIONS(2279), 1, anon_sym_RPAREN, STATE(1162), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15687] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1969), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1967), 23, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [15722] = 18, - ACTIONS(19), 1, + ACTIONS(2122), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(2274), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2280), 1, - anon_sym_record, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(772), 1, - sym__unannotated_type, - STATE(774), 1, - sym_type_parameters, - STATE(1051), 1, - sym__constructor_declarator, - STATE(1097), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15786] = 18, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15683] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2145), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2147), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, - anon_sym_SLASH, - ACTIONS(2155), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2157), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2161), 1, - anon_sym_GT_GT, - ACTIONS(2167), 1, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(2281), 1, + anon_sym_RPAREN, + STATE(1182), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + [15752] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(2283), 1, + anon_sym_RPAREN, + STATE(1137), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2286), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [15850] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15821] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, + ACTIONS(2217), 1, + anon_sym_COMMA, + ACTIONS(2285), 1, + anon_sym_SEMI, + STATE(1174), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + [15890] = 20, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2217), 1, + anon_sym_COMMA, + ACTIONS(2287), 1, + anon_sym_SEMI, + STATE(1177), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2192), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [15914] = 5, - ACTIONS(1235), 1, - anon_sym_non_DASHsealed, - ACTIONS(2288), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15959] = 15, + ACTIONS(435), 1, anon_sym_AT, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(2235), 1, + anon_sym_QMARK, + ACTIONS(2289), 1, + anon_sym_GT, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(839), 1, + sym__unannotated_type, + STATE(923), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1975), 10, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, + ACTIONS(89), 2, anon_sym_float, anon_sym_double, + ACTIONS(91), 2, sym_boolean_type, sym_void_type, - sym_identifier, - ACTIONS(1233), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [15952] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2291), 1, - anon_sym_DOT, - STATE(735), 1, - sym_type_arguments, + STATE(1152), 2, + sym_wildcard, + sym__type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(779), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16018] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 11, + ACTIONS(1591), 12, + anon_sym_DOT, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -62463,10 +62467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1341), 11, + ACTIONS(1593), 13, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -62475,115 +62481,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [15992] = 11, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(2210), 1, - sym_identifier, - ACTIONS(2216), 1, - anon_sym_SEMI, - ACTIONS(2293), 1, - anon_sym_RBRACE, - STATE(1144), 1, - sym_enum_constant, - STATE(1309), 1, - sym_enum_body_declarations, - STATE(1358), 1, - sym_modifiers, + [16052] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(625), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(462), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [16042] = 6, - ACTIONS(252), 1, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2291), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [16116] = 18, + ACTIONS(19), 1, anon_sym_LT, + ACTIONS(2293), 1, + sym_identifier, ACTIONS(2295), 1, - anon_sym_DOT, - STATE(715), 1, - sym_type_arguments, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_enum, + ACTIONS(2299), 1, + anon_sym_record, + ACTIONS(2301), 1, + anon_sym_ATinterface, + ACTIONS(2303), 1, + anon_sym_interface, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(784), 1, + sym__unannotated_type, + STATE(797), 1, + sym_type_parameters, + STATE(1017), 1, + sym__constructor_declarator, + STATE(1117), 1, + sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 11, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16180] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1752), 7, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1750), 18, sym_underscore_pattern, anon_sym_yield, anon_sym_open, anon_sym_module, anon_sym_with, + anon_sym_package, anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, anon_sym_record, - sym_this, + anon_sym_byte, + anon_sym_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(1531), 11, + [16214] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1939), 7, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_LT, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_SEMI, anon_sym_AT, + ACTIONS(1937), 18, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_package, + anon_sym_sealed, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [16248] = 17, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2305), 1, + sym_identifier, + ACTIONS(2307), 1, + anon_sym_DOT, + ACTIONS(2309), 1, + sym_underscore_pattern, + ACTIONS(2311), 1, anon_sym_DOT_DOT_DOT, - [16082] = 3, + ACTIONS(2313), 1, + sym_this, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(866), 1, + sym__reserved_identifier, + STATE(1072), 1, + aux_sym_receiver_parameter_repeat1, + STATE(1278), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1596), 12, - anon_sym_DOT, + ACTIONS(1525), 3, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_COLON_COLON, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1254), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [16310] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1911), 7, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1909), 18, sym_underscore_pattern, anon_sym_yield, anon_sym_open, anon_sym_module, anon_sym_with, + anon_sym_package, anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, anon_sym_record, - sym_this, + anon_sym_byte, + anon_sym_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(1598), 13, - anon_sym_LPAREN, + [16344] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1834), 7, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16116] = 3, + ACTIONS(1832), 18, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_package, + anon_sym_sealed, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [16378] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 12, + ACTIONS(1595), 12, anon_sym_DOT, sym_underscore_pattern, anon_sym_yield, @@ -62596,7 +62759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1606), 13, + ACTIONS(1597), 13, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, @@ -62610,196 +62773,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16150] = 18, - ACTIONS(2091), 1, + [16412] = 11, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(479), 1, + anon_sym_non_DASHsealed, + ACTIONS(2239), 1, + sym_identifier, + ACTIONS(2245), 1, + anon_sym_SEMI, + ACTIONS(2315), 1, + anon_sym_RBRACE, + STATE(1135), 1, + sym_enum_constant, + STATE(1325), 1, + sym_enum_body_declarations, + STATE(1355), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(626), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(473), 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, + [16462] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2297), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [16214] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2299), 2, - anon_sym_RPAREN, + ACTIONS(2317), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [16278] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, + [16526] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(1599), 12, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1601), 13, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2301), 2, + anon_sym_PIPE, anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, - [16342] = 18, - ACTIONS(2091), 1, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [16560] = 19, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, + ACTIONS(2319), 1, + anon_sym_COLON, + ACTIONS(2321), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2303), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [16406] = 3, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16626] = 6, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(2323), 1, + anon_sym_DOT, + STATE(745), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1592), 12, - anon_sym_DOT, + ACTIONS(1542), 11, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -62811,12 +62958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1594), 13, - anon_sym_LPAREN, + ACTIONS(1544), 11, anon_sym_RPAREN, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -62825,11 +62970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16440] = 3, + [16666] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1578), 12, + ACTIONS(1613), 12, anon_sym_DOT, sym_underscore_pattern, anon_sym_yield, @@ -62842,7 +62987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1580), 13, + ACTIONS(1615), 13, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, @@ -62856,164 +63001,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [16474] = 14, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2204), 1, - anon_sym_QMARK, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(834), 1, - sym__unannotated_type, - STATE(906), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1252), 2, - sym_wildcard, - sym__type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(768), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [16530] = 18, - ACTIONS(2091), 1, + [16700] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2209), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [16764] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2305), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [16594] = 16, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - sym_identifier, - ACTIONS(2309), 1, - anon_sym_DOT, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2313), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2315), 1, - sym_this, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1121), 1, - aux_sym_receiver_parameter_repeat1, - STATE(1288), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1508), 3, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2325), 2, anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_COLON_COLON, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [16654] = 11, - ACTIONS(464), 1, + anon_sym_SEMI, + [16828] = 11, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(468), 1, + ACTIONS(479), 1, anon_sym_non_DASHsealed, - ACTIONS(2210), 1, + ACTIONS(2239), 1, sym_identifier, - ACTIONS(2216), 1, + ACTIONS(2245), 1, anon_sym_SEMI, - ACTIONS(2317), 1, + ACTIONS(2327), 1, anon_sym_RBRACE, - STATE(1144), 1, + STATE(1135), 1, sym_enum_constant, - STATE(1358), 1, - sym_modifiers, - STATE(1375), 1, + STATE(1306), 1, sym_enum_body_declarations, + STATE(1355), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(625), 4, + STATE(626), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(462), 13, + ACTIONS(473), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -63027,406 +63132,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [16704] = 19, - ACTIONS(2091), 1, + [16878] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2319), 1, - anon_sym_COLON, - ACTIONS(2321), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [16770] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2323), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [16833] = 14, - ACTIONS(424), 1, + ACTIONS(2329), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [16942] = 5, + ACTIONS(2335), 1, anon_sym_AT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2325), 1, - anon_sym_open, - ACTIONS(2327), 1, - anon_sym_module, - ACTIONS(2329), 1, - anon_sym_package, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(826), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(792), 4, + ACTIONS(2333), 2, + anon_sym_LT, + anon_sym_QMARK, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(2331), 18, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_package, + anon_sym_sealed, + anon_sym_record, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16888] = 18, - ACTIONS(2091), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [16980] = 18, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2159), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2175), 1, anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2183), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2189), 1, anon_sym_QMARK, - ACTIONS(2331), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2163), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2173), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2181), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [16951] = 18, - ACTIONS(2091), 1, + ACTIONS(2338), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [17044] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2333), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17014] = 17, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2280), 1, - anon_sym_record, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(777), 1, - sym__unannotated_type, - STATE(1097), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17075] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2335), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [17138] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1547), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1549), 12, - anon_sym_LPAREN, + ACTIONS(2340), 2, anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_SEMI, + [17108] = 5, + ACTIONS(1246), 1, + anon_sym_non_DASHsealed, + ACTIONS(2342), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [17171] = 14, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1359), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(834), 1, - sym__unannotated_type, - STATE(906), 1, - sym_annotated_type, - STATE(1014), 1, - sym__type, - STATE(1203), 1, - sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(781), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(1904), 10, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [17226] = 14, - ACTIONS(424), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + ACTIONS(1244), 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, + [17146] = 14, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + ACTIONS(2235), 1, + anon_sym_QMARK, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(834), 1, + STATE(839), 1, sym__unannotated_type, - STATE(906), 1, + STATE(923), 1, sym_annotated_type, - STATE(1014), 1, - sym__type, - STATE(1341), 1, - sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -63436,11 +63360,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(1245), 2, + sym_wildcard, + sym__type, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(779), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -63451,550 +63378,535 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [17281] = 17, - ACTIONS(19), 1, + [17202] = 6, + ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2280), 1, - anon_sym_record, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(779), 1, - sym__unannotated_type, - STATE(1097), 1, - sym__method_header, + ACTIONS(2345), 1, + anon_sym_DOT, + STATE(734), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17342] = 18, - ACTIONS(2091), 1, + ACTIONS(1330), 11, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1354), 11, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [17242] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2337), 1, - anon_sym_RPAREN, + ACTIONS(2347), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17405] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17305] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2286), 1, - anon_sym_COLON, + ACTIONS(2349), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17468] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17368] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2339), 1, + ACTIONS(2351), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17531] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2341), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [17594] = 18, - ACTIONS(2091), 1, + [17431] = 14, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(2353), 1, + anon_sym_open, + ACTIONS(2355), 1, + anon_sym_module, + ACTIONS(2357), 1, + anon_sym_package, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(826), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(715), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17486] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2343), 1, - anon_sym_SEMI, + ACTIONS(2359), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17657] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2345), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [17720] = 18, - ACTIONS(2091), 1, + [17549] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2347), 1, - anon_sym_SEMI, + ACTIONS(2361), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17783] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17612] = 17, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_enum, + ACTIONS(2299), 1, + anon_sym_record, + ACTIONS(2301), 1, + anon_sym_ATinterface, + ACTIONS(2303), 1, + anon_sym_interface, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(793), 1, + sym__unannotated_type, + STATE(799), 1, + sym_type_parameters, + STATE(1117), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17673] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2349), 1, - anon_sym_RBRACE, + ACTIONS(2363), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17846] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17736] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2351), 1, + ACTIONS(2365), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17909] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17799] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2353), 1, - anon_sym_COLON, + ACTIONS(2367), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17972] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17862] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2355), 1, + ACTIONS(2369), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18035] = 3, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17925] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1608), 12, + ACTIONS(1629), 12, anon_sym_DOT, sym_underscore_pattern, anon_sym_yield, @@ -64007,7 +63919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1610), 12, + ACTIONS(1631), 12, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, @@ -64020,11 +63932,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [18068] = 3, + [17958] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2371), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18021] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1612), 12, + ACTIONS(1583), 12, anon_sym_DOT, sym_underscore_pattern, anon_sym_yield, @@ -64037,7 +63994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1614), 12, + ACTIONS(1585), 12, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, @@ -64050,112 +64007,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [18101] = 18, - ACTIONS(2091), 1, + [18054] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_RPAREN, + ACTIONS(2373), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + [18117] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2375), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18164] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18180] = 17, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_enum, + ACTIONS(2299), 1, + anon_sym_record, + ACTIONS(2301), 1, + anon_sym_ATinterface, + ACTIONS(2303), 1, + anon_sym_interface, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(786), 1, + sym__unannotated_type, + STATE(799), 1, + sym_type_parameters, + STATE(1117), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [18241] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2359), 1, + ACTIONS(2377), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18304] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2379), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + [18367] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2381), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18227] = 14, - ACTIONS(424), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18430] = 14, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(834), 1, + STATE(839), 1, sym__unannotated_type, - STATE(906), 1, + STATE(923), 1, sym_annotated_type, - STATE(1014), 1, + STATE(1028), 1, sym__type, - STATE(1250), 1, + STATE(1201), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, @@ -64166,11 +64302,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(789), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -64181,11 +64317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [18282] = 3, + [18485] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1551), 12, + ACTIONS(1625), 12, anon_sym_DOT, sym_underscore_pattern, anon_sym_yield, @@ -64198,7 +64334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1553), 12, + ACTIONS(1627), 12, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, @@ -64211,830 +64347,942 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [18315] = 18, - ACTIONS(2091), 1, + [18518] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2361), 1, - anon_sym_SEMI, + ACTIONS(2383), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2124), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2126), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + [18581] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2385), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18378] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18644] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1560), 12, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1562), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [18677] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2363), 1, - anon_sym_SEMI, + ACTIONS(2387), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18441] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18740] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2365), 1, - anon_sym_SEMI, + ACTIONS(2338), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18504] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18803] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2367), 1, + ACTIONS(2389), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18567] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18866] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2369), 1, - anon_sym_RPAREN, + ACTIONS(2391), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18630] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18929] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2371), 1, - anon_sym_RPAREN, + ACTIONS(2393), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18693] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [18992] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2373), 1, + ACTIONS(2395), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18756] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19055] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2375), 1, - anon_sym_RPAREN, + ACTIONS(2397), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18819] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19118] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2377), 1, + ACTIONS(2399), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18882] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19181] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2379), 1, + ACTIONS(2401), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18945] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19244] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2381), 1, - anon_sym_SEMI, + ACTIONS(2403), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19008] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19307] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2383), 1, + ACTIONS(2405), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19071] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19370] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2385), 1, - anon_sym_SEMI, + ACTIONS(2407), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19134] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19433] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2387), 1, + ACTIONS(2409), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19197] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19496] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2389), 1, + ACTIONS(2411), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19260] = 18, - ACTIONS(2091), 1, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19559] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2128), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2130), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2132), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2134), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2136), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_QMARK, - ACTIONS(2391), 1, - anon_sym_RBRACK, + ACTIONS(2413), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(2048), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2114), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19323] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1618), 11, - anon_sym_RPAREN, - anon_sym_AMP, + ACTIONS(2122), 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_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19622] = 14, + ACTIONS(435), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, + ACTIONS(1372), 1, sym_identifier, - [19355] = 3, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(839), 1, + sym__unannotated_type, + STATE(923), 1, + sym_annotated_type, + STATE(1028), 1, + sym__type, + STATE(1206), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 11, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(789), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [19677] = 14, + ACTIONS(435), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1529), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, + ACTIONS(1372), 1, sym_identifier, - [19387] = 6, - ACTIONS(2393), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_DOT, - STATE(800), 1, - sym_annotation_argument_list, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(839), 1, + sym__unannotated_type, + STATE(923), 1, + sym_annotated_type, + STATE(1028), 1, + sym__type, + STATE(1361), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1638), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1634), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(789), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(87), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [19425] = 13, - ACTIONS(424), 1, + [19732] = 18, + ACTIONS(2112), 1, + anon_sym_SLASH, + ACTIONS(2116), 1, + anon_sym_GT_GT, + ACTIONS(2120), 1, + anon_sym_AMP, + ACTIONS(2128), 1, + anon_sym_AMP_AMP, + ACTIONS(2130), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2132), 1, + anon_sym_PIPE, + ACTIONS(2134), 1, + anon_sym_CARET, + ACTIONS(2136), 1, + anon_sym_instanceof, + ACTIONS(2138), 1, + anon_sym_QMARK, + ACTIONS(2415), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2048), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2114), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2122), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2124), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [19795] = 13, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(834), 1, + STATE(839), 1, sym__unannotated_type, - STATE(906), 1, + STATE(923), 1, sym_annotated_type, - STATE(1042), 1, + STATE(1086), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -65045,11 +65293,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(789), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65060,20 +65308,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [19477] = 13, - ACTIONS(424), 1, + [19847] = 13, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(834), 1, + STATE(839), 1, sym__unannotated_type, - STATE(906), 1, + STATE(923), 1, sym_annotated_type, - STATE(1108), 1, + STATE(1118), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -65084,11 +65332,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(789), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65099,13 +65347,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [19529] = 4, - ACTIONS(2295), 1, + [19899] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1544), 11, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1542), 12, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + [19931] = 4, + ACTIONS(2323), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 11, + ACTIONS(1542), 11, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -65117,7 +65394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - ACTIONS(1531), 11, + ACTIONS(1544), 11, anon_sym_RPAREN, anon_sym_AMP, anon_sym_GT, @@ -65129,101 +65406,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [19563] = 16, - ACTIONS(464), 1, + [19965] = 17, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(1525), 1, anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, + ACTIONS(2309), 1, sym_underscore_pattern, - ACTIONS(2397), 1, + ACTIONS(2417), 1, sym_identifier, - ACTIONS(2399), 1, + ACTIONS(2419), 1, anon_sym_DOT, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(853), 1, + STATE(867), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1058), 1, sym__variable_declarator_id, - STATE(1038), 1, + STATE(1059), 1, sym__method_declarator, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1307), 1, + STATE(1369), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [19621] = 13, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1359), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(834), 1, - sym__unannotated_type, - STATE(906), 1, - sym_annotated_type, - STATE(1255), 1, - sym__type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(781), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [19673] = 13, - ACTIONS(424), 1, + [20025] = 13, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(834), 1, + STATE(839), 1, sym__unannotated_type, - STATE(906), 1, + STATE(923), 1, sym_annotated_type, - STATE(1050), 1, + STATE(1244), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -65234,11 +65473,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(789), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65249,20 +65488,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [19725] = 13, - ACTIONS(424), 1, + [20077] = 13, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(834), 1, + STATE(839), 1, sym__unannotated_type, - STATE(906), 1, + STATE(923), 1, sym_annotated_type, - STATE(1287), 1, + STATE(1038), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -65273,11 +65512,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(789), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65288,20 +65527,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [19777] = 13, - ACTIONS(424), 1, + [20129] = 13, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(834), 1, + STATE(839), 1, sym__unannotated_type, - STATE(906), 1, + STATE(923), 1, sym_annotated_type, - STATE(1072), 1, + STATE(1057), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -65312,11 +65551,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(789), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65327,20 +65566,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [19829] = 13, - ACTIONS(424), 1, + [20181] = 13, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(834), 1, + STATE(839), 1, sym__unannotated_type, - STATE(906), 1, + STATE(923), 1, sym_annotated_type, - STATE(1053), 1, + STATE(1185), 1, sym__type, ACTIONS(3), 2, sym_line_comment, @@ -65351,11 +65590,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(789), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65366,147 +65605,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [19881] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1031), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1354), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [19934] = 3, + [20233] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1602), 9, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1623), 11, anon_sym_RPAREN, - anon_sym_LT, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, 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, - [19965] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(422), 9, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + ACTIONS(1621), 12, anon_sym_DOT, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(420), 13, + sym_underscore_pattern, + anon_sym_yield, 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, - [19996] = 8, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(2210), 1, - sym_identifier, - STATE(1144), 1, - sym_enum_constant, - STATE(1358), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(625), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(462), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, + anon_sym_with, anon_sym_sealed, - [20037] = 12, - ACTIONS(424), 1, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + [20265] = 13, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - ACTIONS(2401), 1, - anon_sym_QMARK, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(826), 1, + STATE(839), 1, sym__unannotated_type, + STATE(923), 1, + sym_annotated_type, + STATE(1062), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -65516,11 +65658,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(789), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65531,179 +65673,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [20086] = 14, - ACTIONS(464), 1, + [20317] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(1525), 1, anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2419), 1, anon_sym_DOT, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1058), 1, sym__variable_declarator_id, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1307), 1, + STATE(1369), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2309), 2, sym_underscore_pattern, sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [20139] = 14, - ACTIONS(464), 1, + [20372] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(1525), 1, anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2419), 1, anon_sym_DOT, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1058), 1, + STATE(1048), 1, sym__variable_declarator_id, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1354), 1, + STATE(1368), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2309), 2, sym_underscore_pattern, sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [20192] = 14, - ACTIONS(464), 1, + [20427] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1061), 1, - sym__variable_declarator_id, + ACTIONS(479), 1, + anon_sym_non_DASHsealed, + ACTIONS(2239), 1, + sym_identifier, STATE(1135), 1, - sym_variable_declarator, - STATE(1354), 1, - sym__variable_declarator_list, + sym_enum_constant, + STATE(1355), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, + STATE(626), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, + aux_sym_modifiers_repeat1, + ACTIONS(473), 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, - anon_sym_record, - [20245] = 14, - ACTIONS(464), 1, + [20468] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(1525), 1, + anon_sym_COLON_COLON, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2397), 1, - sym_identifier, - STATE(580), 1, + ACTIONS(2419), 1, + anon_sym_DOT, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(853), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1068), 1, sym__variable_declarator_id, - STATE(1038), 1, - sym__method_declarator, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1320), 1, + STATE(1368), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [20297] = 14, - ACTIONS(1359), 1, + [20523] = 12, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(1372), 1, sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2280), 1, - anon_sym_record, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, + ACTIONS(2421), 1, + anon_sym_QMARK, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(801), 1, + STATE(826), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -65714,41 +65848,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, + STATE(715), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, ACTIONS(87), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20349] = 11, - ACTIONS(424), 1, + [20572] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2403), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(1525), 1, + anon_sym_COLON_COLON, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2419), 1, + anon_sym_DOT, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(866), 1, + sym__reserved_identifier, + STATE(1066), 1, + sym__variable_declarator_id, + STATE(1134), 1, + sym_variable_declarator, + STATE(1368), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1254), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [20627] = 12, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(2423), 1, sym_identifier, - STATE(695), 1, + STATE(813), 1, + sym_type_arguments, + STATE(1000), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(1096), 1, sym_generic_type, - STATE(825), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(2425), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, - sym_array_type, + STATE(1194), 2, sym_integral_type, sym_floating_point_type, - STATE(786), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65759,54 +65939,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [20395] = 14, - ACTIONS(464), 1, + [20675] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2397), 1, + ACTIONS(2305), 1, sym_identifier, - STATE(580), 1, + ACTIONS(2309), 1, + sym_underscore_pattern, + ACTIONS(2311), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2313), 1, + sym_this, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(853), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1072), 1, + aux_sym_receiver_parameter_repeat1, + STATE(1278), 1, sym__variable_declarator_id, - STATE(1038), 1, - sym__method_declarator, - STATE(1135), 1, - sym_variable_declarator, - STATE(1373), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [20447] = 11, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1359), 1, + [20729] = 14, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_enum, + ACTIONS(2299), 1, + anon_sym_record, + ACTIONS(2301), 1, + anon_sym_ATinterface, + ACTIONS(2303), 1, + anon_sym_interface, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(825), 1, + STATE(807), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -65817,71 +66006,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(786), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, ACTIONS(87), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20493] = 14, - ACTIONS(464), 1, + [20781] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, + ACTIONS(2309), 1, sym_underscore_pattern, - ACTIONS(2397), 1, + ACTIONS(2417), 1, sym_identifier, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(853), 1, + STATE(867), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1058), 1, sym__variable_declarator_id, - STATE(1038), 1, + STATE(1059), 1, sym__method_declarator, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1317), 1, + STATE(1308), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [20545] = 12, + [20835] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(424), 1, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2405), 1, + ACTIONS(2427), 1, sym_identifier, STATE(812), 1, sym_type_arguments, - STATE(985), 1, + STATE(854), 1, sym_scoped_type_identifier, - STATE(1145), 1, + STATE(862), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -65889,13 +66074,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(2407), 2, + ACTIONS(2429), 2, sym_boolean_type, sym_void_type, - STATE(1198), 2, + STATE(876), 2, sym_integral_type, sym_floating_point_type, - STATE(783), 4, + STATE(787), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -65906,90 +66091,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [20593] = 14, - ACTIONS(464), 1, + [20883] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, + ACTIONS(2309), 1, sym_underscore_pattern, - ACTIONS(2397), 1, + ACTIONS(2417), 1, sym_identifier, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(853), 1, + STATE(867), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1058), 1, sym__variable_declarator_id, - STATE(1038), 1, + STATE(1059), 1, sym__method_declarator, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1316), 1, + STATE(1366), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [20645] = 14, - ACTIONS(464), 1, + [20937] = 12, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(2431), 1, + sym_identifier, + STATE(813), 1, + sym_type_arguments, + STATE(847), 1, + sym_scoped_type_identifier, + STATE(863), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2433), 2, + sym_boolean_type, + sym_void_type, + STATE(879), 2, + sym_integral_type, + sym_floating_point_type, + STATE(715), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [20985] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, + ACTIONS(2309), 1, sym_underscore_pattern, - ACTIONS(2397), 1, + ACTIONS(2417), 1, sym_identifier, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(853), 1, + STATE(867), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1058), 1, sym__variable_declarator_id, - STATE(1038), 1, + STATE(1059), 1, sym__method_declarator, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1377), 1, + STATE(1315), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [20697] = 11, - ACTIONS(424), 1, + [21039] = 11, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, STATE(826), 1, sym__unannotated_type, @@ -66002,11 +66225,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -66017,31 +66240,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [20743] = 11, - ACTIONS(424), 1, + [21085] = 12, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(2435), 1, sym_identifier, - STATE(695), 1, + STATE(813), 1, + sym_type_arguments, + STATE(851), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(865), 1, sym_generic_type, - STATE(877), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(2437), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, - sym_array_type, + STATE(880), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -66052,121 +66276,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [20789] = 12, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(424), 1, + [21133] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2409), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2309), 1, + sym_underscore_pattern, + ACTIONS(2417), 1, sym_identifier, - STATE(805), 1, - sym_type_arguments, - STATE(994), 1, - sym_scoped_type_identifier, - STATE(1170), 1, - sym_generic_type, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(867), 1, + sym__reserved_identifier, + STATE(1058), 1, + sym__variable_declarator_id, + STATE(1059), 1, + sym__method_declarator, + STATE(1134), 1, + sym_variable_declarator, + STATE(1328), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2411), 2, - sym_boolean_type, - sym_void_type, - STATE(1284), 2, - sym_integral_type, - sym_floating_point_type, - STATE(792), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [20837] = 11, - ACTIONS(424), 1, + ACTIONS(1254), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [21187] = 11, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2413), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(433), 1, - sym__unannotated_type, - STATE(461), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(469), 1, + STATE(767), 1, sym_generic_type, + STATE(857), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 2, + ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(2005), 2, + ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(476), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2001), 5, + ACTIONS(87), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20883] = 12, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(424), 1, + [21233] = 15, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2415), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2309), 1, + sym_underscore_pattern, + ACTIONS(2417), 1, sym_identifier, - STATE(812), 1, - sym_type_arguments, - STATE(841), 1, - sym_scoped_type_identifier, - STATE(860), 1, - sym_generic_type, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(867), 1, + sym__reserved_identifier, + STATE(1058), 1, + sym__variable_declarator_id, + STATE(1059), 1, + sym__method_declarator, + STATE(1134), 1, + sym_variable_declarator, + STATE(1337), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2417), 2, - sym_boolean_type, - sym_void_type, - STATE(862), 2, - sym_integral_type, - sym_floating_point_type, - STATE(787), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [20931] = 11, - ACTIONS(424), 1, + ACTIONS(1254), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [21287] = 11, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, STATE(824), 1, sym__unannotated_type, @@ -66179,11 +66409,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -66194,18 +66424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [20977] = 12, + [21333] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(424), 1, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2419), 1, + ACTIONS(2439), 1, sym_identifier, - STATE(805), 1, + STATE(812), 1, sym_type_arguments, - STATE(843), 1, + STATE(997), 1, sym_scoped_type_identifier, - STATE(861), 1, + STATE(1105), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -66213,13 +66443,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(2421), 2, + ACTIONS(2441), 2, sym_boolean_type, sym_void_type, - STATE(863), 2, + STATE(1301), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(781), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -66230,32 +66460,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [21025] = 12, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(424), 1, + [21381] = 11, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2423), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(812), 1, - sym_type_arguments, - STATE(846), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(855), 1, + STATE(767), 1, sym_generic_type, + STATE(886), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(2425), 2, + ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(872), 2, + STATE(766), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(790), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -66266,90 +66495,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [21073] = 14, - ACTIONS(464), 1, + [21427] = 11, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2443), 1, sym_identifier, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2313), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2315), 1, - sym_this, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1121), 1, - aux_sym_receiver_parameter_repeat1, - STATE(1288), 1, - sym__variable_declarator_id, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(829), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(794), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21125] = 12, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(424), 1, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [21473] = 11, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2427), 1, + ACTIONS(2445), 1, sym_identifier, - STATE(805), 1, - sym_type_arguments, - STATE(844), 1, + STATE(436), 1, + sym__unannotated_type, + STATE(459), 1, sym_scoped_type_identifier, - STATE(850), 1, + STATE(466), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(2016), 2, anon_sym_float, anon_sym_double, - ACTIONS(2429), 2, + ACTIONS(2018), 2, sym_boolean_type, sym_void_type, - STATE(870), 2, + STATE(477), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(2014), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [21173] = 11, - ACTIONS(424), 1, + [21519] = 11, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(849), 1, + STATE(829), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -66360,11 +66585,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(794), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -66375,563 +66600,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [21219] = 5, - ACTIONS(2435), 1, + [21565] = 12, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(435), 1, anon_sym_AT, + ACTIONS(2447), 1, + sym_identifier, + STATE(812), 1, + sym_type_arguments, + STATE(850), 1, + sym_scoped_type_identifier, + STATE(864), 1, + sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 2, - anon_sym_LT, - anon_sym_QMARK, - STATE(792), 4, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2449), 2, + sym_boolean_type, + sym_void_type, + STATE(871), 2, + sym_integral_type, + sym_floating_point_type, + STATE(790), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2431), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + ACTIONS(87), 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, - [21252] = 13, - ACTIONS(464), 1, + [21613] = 14, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, + ACTIONS(2309), 1, sym_underscore_pattern, - ACTIONS(2438), 1, + ACTIONS(2451), 1, sym_identifier, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(865), 1, + STATE(882), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1058), 1, sym__variable_declarator_id, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1377), 1, + STATE(1328), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21301] = 12, - ACTIONS(464), 1, + [21664] = 13, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(1525), 1, + anon_sym_COLON_COLON, + ACTIONS(2005), 1, anon_sym_LBRACK, - STATE(580), 1, + ACTIONS(2419), 1, + anon_sym_DOT, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1009), 1, + STATE(1340), 1, sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1321), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2309), 2, sym_underscore_pattern, sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21348] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1861), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1859), 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, - [21377] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1735), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_SEMI, + [21713] = 14, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1733), 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, - [21406] = 13, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2311), 1, + ACTIONS(2309), 1, sym_underscore_pattern, - ACTIONS(2440), 1, + ACTIONS(2453), 1, sym_identifier, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(864), 1, + STATE(870), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1058), 1, sym__variable_declarator_id, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1316), 1, + STATE(1366), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21455] = 12, - ACTIONS(464), 1, + [21764] = 13, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(2295), 1, + anon_sym_class, + ACTIONS(2297), 1, + anon_sym_enum, + ACTIONS(2301), 1, + anon_sym_ATinterface, + ACTIONS(2303), 1, + anon_sym_interface, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(803), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [21813] = 13, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1008), 1, + STATE(1041), 1, sym__variable_declarator_id, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1321), 1, + STATE(1313), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2309), 2, sym_underscore_pattern, sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21502] = 12, - ACTIONS(464), 1, + [21862] = 13, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1366), 1, + STATE(1030), 1, sym__variable_declarator_id, + STATE(1134), 1, + sym_variable_declarator, + STATE(1313), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2309), 2, sym_underscore_pattern, sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21549] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1897), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1895), 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, - [21578] = 12, - ACTIONS(464), 1, + [21911] = 13, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1027), 1, + STATE(1058), 1, sym__variable_declarator_id, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1317), 1, + STATE(1337), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2309), 2, sym_underscore_pattern, sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21625] = 13, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(797), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [21674] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1969), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1967), 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, - [21703] = 12, - ACTIONS(464), 1, + [21960] = 13, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1059), 1, + STATE(1067), 1, sym__variable_declarator_id, - STATE(1135), 1, + STATE(1134), 1, sym_variable_declarator, - STATE(1321), 1, + STATE(1313), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2309), 2, sym_underscore_pattern, sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21750] = 10, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2442), 1, - sym_identifier, - STATE(992), 1, - sym_scoped_type_identifier, - STATE(1106), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2444), 2, - sym_boolean_type, - sym_void_type, - STATE(1194), 2, - sym_integral_type, - sym_floating_point_type, - STATE(810), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [21792] = 11, - ACTIONS(464), 1, + [22009] = 12, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2446), 1, + ACTIONS(2311), 1, anon_sym_DOT_DOT_DOT, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(1297), 1, + STATE(1278), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2309), 2, sym_underscore_pattern, sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21836] = 14, + [22055] = 15, ACTIONS(13), 1, anon_sym_DQUOTE, ACTIONS(15), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(2448), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2455), 1, sym_identifier, - ACTIONS(2450), 1, + ACTIONS(2457), 1, anon_sym_new, - ACTIONS(2452), 1, + ACTIONS(2459), 1, sym_this, - ACTIONS(2454), 1, + ACTIONS(2461), 1, sym_super, - STATE(428), 1, + STATE(500), 1, sym__reserved_identifier, - STATE(554), 1, + STATE(560), 1, sym_string_literal, - STATE(555), 1, + STATE(566), 1, sym__unqualified_object_creation_expression, - STATE(919), 1, + STATE(928), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(570), 2, + STATE(526), 2, sym__string_literal, sym__multiline_string_literal, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21886] = 11, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2313), 1, - anon_sym_DOT_DOT_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, + [22107] = 15, + ACTIONS(13), 1, + anon_sym_DQUOTE, + ACTIONS(15), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2457), 1, + anon_sym_new, + ACTIONS(2463), 1, + sym_identifier, + ACTIONS(2465), 1, + sym_this, + ACTIONS(2467), 1, + sym_super, + STATE(429), 1, sym__reserved_identifier, - STATE(1288), 1, - sym__variable_declarator_id, + STATE(560), 1, + sym_string_literal, + STATE(566), 1, + sym__unqualified_object_creation_expression, + STATE(928), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, + STATE(526), 2, + sym__string_literal, + sym__multiline_string_literal, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [21930] = 10, - ACTIONS(424), 1, + [22159] = 10, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2456), 1, + ACTIONS(2469), 1, sym_identifier, - STATE(990), 1, + STATE(1008), 1, sym_scoped_type_identifier, - STATE(1104), 1, + STATE(1180), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -66939,13 +67049,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(2458), 2, + ACTIONS(2471), 2, sym_boolean_type, sym_void_type, - STATE(1183), 2, + STATE(1237), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(814), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -66956,14 +67066,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [21972] = 10, - ACTIONS(424), 1, + [22201] = 10, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2460), 1, + ACTIONS(2473), 1, sym_identifier, - STATE(1001), 1, + STATE(1007), 1, sym_scoped_type_identifier, - STATE(1075), 1, + STATE(1078), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2475), 2, + sym_boolean_type, + sym_void_type, + STATE(1279), 2, + sym_integral_type, + sym_floating_point_type, + STATE(816), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [22243] = 10, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(2477), 1, + sym_identifier, + STATE(999), 1, + sym_scoped_type_identifier, + STATE(1119), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -66971,13 +67113,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(2462), 2, + ACTIONS(2479), 2, sym_boolean_type, sym_void_type, - STATE(1188), 2, + STATE(1239), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -66988,50 +67130,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [22014] = 14, + [22285] = 15, ACTIONS(13), 1, anon_sym_DQUOTE, ACTIONS(15), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(2450), 1, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2457), 1, anon_sym_new, - ACTIONS(2464), 1, + ACTIONS(2463), 1, sym_identifier, - ACTIONS(2466), 1, + ACTIONS(2465), 1, sym_this, - ACTIONS(2468), 1, + ACTIONS(2481), 1, sym_super, - STATE(490), 1, + STATE(429), 1, sym__reserved_identifier, - STATE(554), 1, + STATE(560), 1, sym_string_literal, - STATE(555), 1, + STATE(566), 1, sym__unqualified_object_creation_expression, - STATE(919), 1, + STATE(905), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(570), 2, + STATE(526), 2, sym__string_literal, sym__multiline_string_literal, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [22064] = 10, - ACTIONS(424), 1, + [22337] = 10, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2470), 1, + ACTIONS(2483), 1, sym_identifier, - STATE(997), 1, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1067), 1, + STATE(1087), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, @@ -67039,13 +67182,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(89), 2, anon_sym_float, anon_sym_double, - ACTIONS(2472), 2, + ACTIONS(2485), 2, sym_boolean_type, sym_void_type, - STATE(1221), 2, + STATE(1296), 2, sym_integral_type, sym_floating_point_type, - STATE(809), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, @@ -67056,154 +67199,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [22106] = 14, - ACTIONS(13), 1, - anon_sym_DQUOTE, - ACTIONS(15), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + [22379] = 12, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, + anon_sym_DOT_DOT_DOT, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(866), 1, + sym__reserved_identifier, + STATE(1253), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1254), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [22425] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(2448), 1, - sym_identifier, - ACTIONS(2450), 1, - anon_sym_new, - ACTIONS(2452), 1, + ACTIONS(2489), 1, + anon_sym_DOT, + STATE(745), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1544), 6, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1542), 9, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, sym_this, - ACTIONS(2474), 1, - sym_super, - STATE(428), 1, - sym__reserved_identifier, - STATE(554), 1, - sym_string_literal, - STATE(555), 1, - sym__unqualified_object_creation_expression, - STATE(902), 1, + sym_identifier, + [22458] = 10, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(1350), 1, + anon_sym_DOT, + ACTIONS(1354), 1, + anon_sym_AT, + STATE(563), 1, + sym_argument_list, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(570), 2, - sym__string_literal, - sym__multiline_string_literal, - ACTIONS(69), 6, + ACTIONS(1347), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(2492), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1330), 8, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + [22499] = 9, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2496), 1, + anon_sym_PIPE, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(901), 1, + aux_sym_catch_type_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2494), 8, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + [22538] = 11, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1252), 1, anon_sym_yield, + ACTIONS(2005), 1, + anon_sym_LBRACK, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(866), 1, + sym__reserved_identifier, + STATE(1334), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [22156] = 11, - ACTIONS(464), 1, + [22581] = 12, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1525), 1, anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2419), 1, anon_sym_DOT, - ACTIONS(2476), 1, + ACTIONS(2498), 1, sym_identifier, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(1277), 1, + STATE(1166), 1, sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [22199] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2478), 1, + [22626] = 12, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1525), 1, + anon_sym_COLON_COLON, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2419), 1, anon_sym_DOT, - STATE(715), 1, - sym_type_arguments, + ACTIONS(2500), 1, + sym_identifier, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(1282), 1, + sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 6, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1529), 9, - sym_underscore_pattern, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(69), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [22671] = 11, + ACTIONS(433), 1, anon_sym_yield, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2502), 1, + sym_identifier, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, + STATE(1035), 1, + sym__method_declarator, + STATE(1295), 1, + sym__reserved_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - sym_this, + [22713] = 10, + ACTIONS(1372), 1, sym_identifier, - [22232] = 9, - ACTIONS(464), 1, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(820), 1, + sym__unannotated_type, + STATE(899), 1, + sym_catch_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [22753] = 7, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2483), 1, - anon_sym_PIPE, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(894), 1, - aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2481), 8, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [22271] = 10, + ACTIONS(1521), 9, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [22787] = 10, + ACTIONS(35), 1, + anon_sym_LBRACE, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(2504), 1, anon_sym_LPAREN, - ACTIONS(1337), 1, + ACTIONS(2506), 1, anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, + STATE(571), 1, + sym_block, + STATE(734), 1, sym_type_arguments, + STATE(1191), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1354), 2, anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(2485), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(1317), 8, + anon_sym_AT, + ACTIONS(1330), 8, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -67212,91 +67537,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - [22312] = 10, - ACTIONS(464), 1, + [22827] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - STATE(580), 1, + ACTIONS(2510), 1, + anon_sym_PIPE, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1371), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, + ACTIONS(2508), 8, + sym_underscore_pattern, anon_sym_yield, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [22353] = 11, - ACTIONS(464), 1, + sym_identifier, + [22863] = 11, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - ACTIONS(2487), 1, + ACTIONS(2502), 1, sym_identifier, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(1091), 1, + STATE(1064), 1, + sym__method_declarator, + STATE(1295), 1, sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [22396] = 10, + [22905] = 10, ACTIONS(35), 1, anon_sym_LBRACE, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(2504), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2506), 1, anon_sym_DOT, - STATE(535), 1, + STATE(543), 1, sym_block, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, - STATE(1225), 1, + STATE(1191), 1, sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 2, + ACTIONS(1354), 2, anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1317), 8, + ACTIONS(1330), 8, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -67305,47 +67626,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - [22436] = 10, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2489), 1, - anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - STATE(523), 1, - sym_block, - STATE(735), 1, - sym_type_arguments, - STATE(1225), 1, - sym_formal_parameters, + [22945] = 9, + ACTIONS(1372), 1, + sym_identifier, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(767), 1, + sym_generic_type, + STATE(806), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 2, - anon_sym_LBRACK, + ACTIONS(89), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(91), 2, + sym_boolean_type, + sym_void_type, + STATE(766), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(87), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [22982] = 9, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1317), 8, - sym_underscore_pattern, + ACTIONS(1252), 1, anon_sym_yield, + STATE(866), 1, + sym__reserved_identifier, + STATE(1058), 1, + sym__variable_declarator_id, + STATE(1196), 1, + sym_variable_declarator, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + STATE(835), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, + [23019] = 9, + ACTIONS(1372), 1, sym_identifier, - [22476] = 10, - ACTIONS(1359), 1, - sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(816), 1, + STATE(817), 1, sym__unannotated_type, - STATE(895), 1, - sym_catch_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -67355,7 +67700,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -67365,185 +67710,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [22516] = 8, - ACTIONS(464), 1, + [23056] = 9, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2495), 1, - anon_sym_PIPE, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, + ACTIONS(1252), 1, + anon_sym_yield, + STATE(866), 1, + sym__reserved_identifier, + STATE(1058), 1, + sym__variable_declarator_id, + STATE(1196), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2493), 8, - sym_underscore_pattern, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - sym_identifier, - [22552] = 10, - ACTIONS(464), 1, + [23093] = 9, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2497), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(1010), 1, - sym__method_declarator, - STATE(1272), 1, + ACTIONS(1252), 1, + anon_sym_yield, + STATE(866), 1, sym__reserved_identifier, + STATE(1058), 1, + sym__variable_declarator_id, + STATE(1234), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [22592] = 10, - ACTIONS(464), 1, + [23130] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2514), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2497), 1, + ACTIONS(2512), 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, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(1046), 1, - sym__method_declarator, - STATE(1272), 1, + [23155] = 9, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(1252), 1, + anon_sym_yield, + STATE(866), 1, sym__reserved_identifier, + STATE(1058), 1, + sym__variable_declarator_id, + STATE(1263), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + STATE(834), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [22632] = 7, - ACTIONS(464), 1, + [23192] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2518), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2516), 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, + [23217] = 7, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1504), 9, + ACTIONS(1525), 8, anon_sym_RPAREN, anon_sym_AMP, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [22666] = 9, - ACTIONS(1359), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(806), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [22703] = 9, - ACTIONS(1359), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(823), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [22740] = 9, - ACTIONS(1359), 1, + [23250] = 9, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(794), 1, + STATE(821), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -67554,7 +67882,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -67564,42 +67892,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [22777] = 9, - ACTIONS(464), 1, + [23287] = 10, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2476), 1, + ACTIONS(2500), 1, sym_identifier, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(1277), 1, + STATE(1282), 1, sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [22814] = 9, - ACTIONS(1359), 1, + [23326] = 9, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(818), 1, + STATE(805), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -67610,7 +67939,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -67620,20 +67949,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [22851] = 4, - ACTIONS(2478), 1, + [23363] = 4, + ACTIONS(2489), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 6, + ACTIONS(1544), 6, anon_sym_RPAREN, anon_sym_AMP, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1529), 9, + ACTIONS(1542), 9, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -67643,14 +67972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, sym_this, sym_identifier, - [22878] = 9, - ACTIONS(1359), 1, + [23390] = 9, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(798), 1, + STATE(828), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -67661,7 +67990,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -67671,62 +68000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [22915] = 7, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1508), 8, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [22948] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2501), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(2499), 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, - [22973] = 9, - ACTIONS(1359), 1, + [23427] = 9, + ACTIONS(1372), 1, sym_identifier, - STATE(695), 1, + STATE(709), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(767), 1, sym_generic_type, - STATE(804), 1, + STATE(808), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, @@ -67737,7 +68018,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(766), 3, sym_array_type, sym_integral_type, sym_floating_point_type, @@ -67747,308 +68028,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - [23010] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2505), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(2503), 13, - anon_sym_extends, - anon_sym_implements, - anon_sym_permits, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [23035] = 12, + [23464] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2506), 1, anon_sym_DOT, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(487), 1, + STATE(492), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, - STATE(1192), 1, + STATE(1277), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(450), 2, + STATE(878), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23077] = 12, + [23506] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(486), 1, + ACTIONS(2522), 1, + anon_sym_DOT, + STATE(488), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(735), 1, + STATE(745), 1, sym_type_arguments, - STATE(1246), 1, + STATE(1261), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(448), 2, + STATE(451), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23119] = 12, + [23548] = 4, + ACTIONS(2524), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2209), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1907), 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, + [23574] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2506), 1, anon_sym_DOT, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(486), 1, + STATE(501), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, - STATE(1246), 1, + STATE(1228), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(867), 2, + STATE(874), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23161] = 12, + [23616] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(493), 1, + STATE(502), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(715), 1, + STATE(745), 1, sym_type_arguments, - STATE(1206), 1, + STATE(1287), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(866), 2, + STATE(873), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23203] = 12, + [23658] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(487), 1, + ACTIONS(2522), 1, + anon_sym_DOT, + STATE(488), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(735), 1, + STATE(745), 1, sym_type_arguments, - STATE(1192), 1, + STATE(1261), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(868), 2, + STATE(877), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23245] = 12, + [23700] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, - anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2506), 1, anon_sym_DOT, - STATE(495), 1, + ACTIONS(2520), 1, + anon_sym_LBRACK, + STATE(492), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(715), 1, + STATE(734), 1, sym_type_arguments, - STATE(1190), 1, + STATE(1277), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(869), 2, + STATE(450), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23287] = 12, + [23742] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, - anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2506), 1, anon_sym_DOT, - STATE(495), 1, + ACTIONS(2520), 1, + anon_sym_LBRACK, + STATE(501), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(715), 1, + STATE(734), 1, sym_type_arguments, - STATE(1190), 1, + STATE(1228), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(449), 2, + STATE(452), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23329] = 4, - ACTIONS(2511), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2192), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1978), 10, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [23355] = 12, + [23784] = 12, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(493), 1, + STATE(502), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(715), 1, + STATE(745), 1, sym_type_arguments, - STATE(1206), 1, + STATE(1287), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(446), 2, + STATE(448), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23397] = 8, + [23826] = 8, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1514), 1, + ACTIONS(2504), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2506), 1, anon_sym_DOT, - STATE(607), 1, - sym_record_pattern_body, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, + STATE(1264), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 2, + ACTIONS(1354), 2, anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1317), 7, + ACTIONS(1330), 7, anon_sym_yield, anon_sym_open, anon_sym_module, @@ -68056,24 +68315,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - [23430] = 8, + [23859] = 8, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(1529), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2506), 1, anon_sym_DOT, - STATE(735), 1, + STATE(590), 1, + sym_record_pattern_body, + STATE(734), 1, sym_type_arguments, - STATE(1237), 1, - sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 2, + ACTIONS(1354), 2, anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1317), 7, + ACTIONS(1330), 7, anon_sym_yield, anon_sym_open, anon_sym_module, @@ -68081,972 +68340,946 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - [23463] = 10, - ACTIONS(464), 1, + [23892] = 10, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2513), 1, + ACTIONS(2526), 1, sym_identifier, - ACTIONS(2515), 1, + ACTIONS(2528), 1, sym_this, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(1080), 1, + STATE(1127), 1, aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1504), 3, + ACTIONS(1521), 3, anon_sym_RPAREN, anon_sym_AMP, anon_sym_COLON_COLON, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [23500] = 10, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2507), 1, - anon_sym_LBRACK, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(1190), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(449), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [23536] = 8, - ACTIONS(2517), 1, - sym_identifier, - STATE(882), 1, - aux_sym_requires_module_directive_repeat1, - STATE(900), 1, - sym_requires_modifier, - STATE(1242), 1, - sym_scoped_identifier, - STATE(1243), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2519), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [23568] = 7, - ACTIONS(2521), 1, - sym_identifier, - STATE(851), 1, - aux_sym_requires_module_directive_repeat1, - STATE(900), 1, - sym_requires_modifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2519), 2, - anon_sym_transitive, - anon_sym_static, - STATE(1224), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [23598] = 9, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(884), 1, - sym_formal_parameters, - STATE(995), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2523), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [23632] = 9, - ACTIONS(2525), 1, - anon_sym_RBRACE, - ACTIONS(2527), 1, - anon_sym_requires, - ACTIONS(2530), 1, - anon_sym_exports, - ACTIONS(2533), 1, - anon_sym_opens, - ACTIONS(2536), 1, - anon_sym_uses, - ACTIONS(2539), 1, - anon_sym_provides, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(854), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(977), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [23666] = 10, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2507), 1, - anon_sym_LBRACK, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(493), 1, - sym_argument_list, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(1206), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(446), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23702] = 9, - ACTIONS(2542), 1, + [23929] = 6, + ACTIONS(1529), 1, + anon_sym_LPAREN, + ACTIONS(2530), 1, + anon_sym_DOT, + STATE(590), 1, + sym_record_pattern_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1544), 3, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + ACTIONS(1542), 7, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + [23957] = 9, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2533), 1, + sym_identifier, + STATE(885), 1, + aux_sym_requires_module_directive_repeat1, + STATE(910), 1, + sym_requires_modifier, + STATE(1288), 1, + sym_scoped_identifier, + STATE(1292), 1, + sym__reserved_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2535), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(69), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [23991] = 9, + ACTIONS(2537), 1, anon_sym_RBRACE, - ACTIONS(2544), 1, + ACTIONS(2539), 1, anon_sym_requires, - ACTIONS(2546), 1, + ACTIONS(2542), 1, anon_sym_exports, - ACTIONS(2548), 1, + ACTIONS(2545), 1, anon_sym_opens, - ACTIONS(2550), 1, + ACTIONS(2548), 1, anon_sym_uses, - ACTIONS(2552), 1, + ACTIONS(2551), 1, anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(854), 2, + STATE(860), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(977), 5, + STATE(972), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [23736] = 9, - ACTIONS(2544), 1, + [24025] = 9, + ACTIONS(2554), 1, + anon_sym_RBRACE, + ACTIONS(2556), 1, anon_sym_requires, - ACTIONS(2546), 1, + ACTIONS(2558), 1, anon_sym_exports, - ACTIONS(2548), 1, + ACTIONS(2560), 1, anon_sym_opens, - ACTIONS(2550), 1, + ACTIONS(2562), 1, anon_sym_uses, - ACTIONS(2552), 1, + ACTIONS(2564), 1, anon_sym_provides, - ACTIONS(2554), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(856), 2, + STATE(869), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(977), 5, + STATE(972), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [23770] = 6, - ACTIONS(1514), 1, - anon_sym_LPAREN, - ACTIONS(2556), 1, - anon_sym_DOT, - STATE(607), 1, - sym_record_pattern_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1531), 3, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - ACTIONS(1529), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [23798] = 7, - ACTIONS(464), 1, + [24059] = 10, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(580), 1, + ACTIONS(2522), 1, + anon_sym_DOT, + STATE(502), 1, + sym_argument_list, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(995), 1, + STATE(1287), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(448), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2523), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [23828] = 10, - ACTIONS(464), 1, + [24095] = 10, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(493), 1, + STATE(488), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(1206), 1, + STATE(1261), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(866), 2, + STATE(451), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23864] = 10, - ACTIONS(464), 1, + [24131] = 10, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(495), 1, + STATE(502), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(1190), 1, + STATE(1287), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(869), 2, + STATE(873), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23900] = 9, - ACTIONS(464), 1, + [24167] = 10, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(493), 1, + ACTIONS(2522), 1, + anon_sym_DOT, + STATE(488), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(1206), 1, + STATE(1261), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(866), 2, + STATE(877), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23933] = 9, - ACTIONS(464), 1, + [24203] = 7, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - STATE(495), 1, - sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(1190), 1, + STATE(988), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(869), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23966] = 8, - ACTIONS(464), 1, + ACTIONS(2566), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [24233] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2504), 1, anon_sym_LPAREN, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(995), 1, + STATE(887), 1, + sym_formal_parameters, + STATE(988), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2523), 3, + ACTIONS(2566), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23997] = 8, - ACTIONS(464), 1, + [24267] = 8, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2568), 1, + sym_identifier, + STATE(859), 1, + aux_sym_requires_module_directive_repeat1, + STATE(910), 1, + sym_requires_modifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2535), 2, + anon_sym_transitive, + anon_sym_static, + STATE(1243), 2, + sym_scoped_identifier, + sym__reserved_identifier, + ACTIONS(69), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [24299] = 9, + ACTIONS(2556), 1, + anon_sym_requires, + ACTIONS(2558), 1, + anon_sym_exports, + ACTIONS(2560), 1, + anon_sym_opens, + ACTIONS(2562), 1, + anon_sym_uses, + ACTIONS(2564), 1, + anon_sym_provides, + ACTIONS(2570), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(860), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(972), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [24333] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2561), 1, + ACTIONS(2572), 1, anon_sym_LPAREN, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(995), 1, + STATE(988), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2523), 3, + ACTIONS(2566), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(945), 4, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [24364] = 9, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2520), 1, + anon_sym_LBRACK, + STATE(502), 1, + sym_argument_list, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(1287), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(873), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24028] = 8, - ACTIONS(464), 1, + [24397] = 9, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2463), 1, + sym_identifier, + ACTIONS(2465), 1, + sym_this, + ACTIONS(2467), 1, + sym_super, + STATE(429), 1, + sym__reserved_identifier, + STATE(928), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(69), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [24430] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(564), 1, + STATE(547), 1, sym_dimensions, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 2, + ACTIONS(1536), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(464), 2, + STATE(472), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24059] = 8, - ACTIONS(464), 1, + [24461] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(567), 1, + STATE(513), 1, sym_dimensions, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1535), 2, + ACTIONS(1556), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(464), 2, + STATE(472), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(974), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [24492] = 6, + ACTIONS(1529), 1, + anon_sym_LPAREN, + ACTIONS(2522), 1, + anon_sym_DOT, + STATE(590), 1, + sym_record_pattern_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1544), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1542), 7, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + [24519] = 9, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2520), 1, + anon_sym_LBRACK, + STATE(502), 1, + sym_argument_list, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(1287), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(448), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24090] = 8, - ACTIONS(464), 1, + [24552] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(521), 1, + STATE(538), 1, sym_dimensions, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1543), 2, + ACTIONS(1552), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(464), 2, + STATE(472), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24121] = 8, - ACTIONS(464), 1, + [24583] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(518), 1, + STATE(541), 1, sym_dimensions, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1539), 2, + ACTIONS(1548), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(464), 2, + STATE(472), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24152] = 9, - ACTIONS(464), 1, + [24614] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(495), 1, + STATE(488), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(1190), 1, + STATE(1261), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(449), 2, + STATE(451), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24185] = 6, - ACTIONS(1514), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(607), 1, - sym_record_pattern_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1531), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1529), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [24212] = 9, - ACTIONS(464), 1, + [24647] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2520), 1, anon_sym_LBRACK, - STATE(493), 1, + STATE(488), 1, sym_argument_list, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(1206), 1, + STATE(1261), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(446), 2, + STATE(877), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(974), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24245] = 8, + [24680] = 9, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(2464), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2455), 1, sym_identifier, - ACTIONS(2466), 1, + ACTIONS(2459), 1, sym_this, - ACTIONS(2468), 1, + ACTIONS(2461), 1, sym_super, - STATE(490), 1, + STATE(500), 1, sym__reserved_identifier, - STATE(919), 1, + STATE(928), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24276] = 8, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2448), 1, - sym_identifier, - ACTIONS(2452), 1, - sym_this, - ACTIONS(2454), 1, - sym_super, - STATE(428), 1, - sym__reserved_identifier, - STATE(919), 1, - sym_type_arguments, + [24713] = 8, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2574), 1, + anon_sym_LPAREN, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(988), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(69), 6, + ACTIONS(2566), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [24744] = 7, + ACTIONS(1252), 1, anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24307] = 7, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2563), 1, - sym_identifier, - ACTIONS(2565), 1, - sym_this, - STATE(494), 1, + STATE(866), 1, sym__reserved_identifier, - STATE(921), 1, - sym_type_arguments, + STATE(1058), 1, + sym__variable_declarator_id, + STATE(1275), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24335] = 9, - ACTIONS(464), 1, + [24772] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2576), 1, anon_sym_default, - ACTIONS(2569), 1, + ACTIONS(2578), 1, anon_sym_SEMI, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(1130), 1, + STATE(1168), 1, sym_dimensions, - STATE(1326), 1, + STATE(1383), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24367] = 9, - ACTIONS(464), 1, + [24804] = 5, + STATE(885), 1, + aux_sym_requires_module_directive_repeat1, + STATE(910), 1, + sym_requires_modifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2582), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2580), 7, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + [24828] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2513), 1, + ACTIONS(2526), 1, sym_identifier, - ACTIONS(2515), 1, + ACTIONS(2528), 1, sym_this, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(773), 1, sym_dimensions, - STATE(1080), 1, + STATE(1127), 1, aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24399] = 6, - STATE(859), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1285), 1, - sym_variable_declarator, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24425] = 8, - ACTIONS(464), 1, + [24860] = 7, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, - anon_sym_DOT, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(995), 1, + STATE(1176), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2523), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(945), 4, + ACTIONS(2585), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24455] = 7, + [24888] = 8, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(2573), 1, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2575), 1, + ACTIONS(2589), 1, sym_this, - STATE(429), 1, + STATE(489), 1, sym__reserved_identifier, - STATE(921), 1, + STATE(926), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24483] = 6, - STATE(859), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1223), 1, - sym_variable_declarator, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24509] = 5, - STATE(882), 1, - aux_sym_requires_module_directive_repeat1, - STATE(900), 1, - sym_requires_modifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2579), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2577), 7, + [24918] = 8, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(433), 1, anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + ACTIONS(2591), 1, sym_identifier, - [24533] = 6, - STATE(859), 1, + ACTIONS(2593), 1, + sym_this, + STATE(430), 1, sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1213), 1, - sym_variable_declarator, + STATE(926), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24559] = 7, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(1111), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2582), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [24587] = 9, - ACTIONS(464), 1, + [24948] = 9, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2576), 1, anon_sym_default, - ACTIONS(2584), 1, + ACTIONS(2595), 1, anon_sym_SEMI, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(1100), 1, + STATE(1075), 1, sym_dimensions, - STATE(1367), 1, + STATE(1330), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24619] = 8, - ACTIONS(464), 1, + [24980] = 8, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(2005), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(2597), 1, anon_sym_DOT, - STATE(580), 1, + STATE(583), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(988), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(2566), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(971), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24648] = 6, - ACTIONS(2586), 1, + [25010] = 11, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(1659), 1, + anon_sym_LBRACE, + ACTIONS(2599), 1, + anon_sym_extends, + ACTIONS(2601), 1, + anon_sym_implements, + ACTIONS(2603), 1, + anon_sym_permits, + STATE(269), 1, + sym_class_body, + STATE(932), 1, + sym_type_parameters, + STATE(981), 1, + sym_superclass, + STATE(1021), 1, + sym_super_interfaces, + STATE(1273), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25045] = 6, + ACTIONS(2605), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2590), 1, + ACTIONS(2609), 1, anon_sym_BSLASH_LBRACE, - ACTIONS(2588), 2, + ACTIONS(2607), 2, aux_sym__multiline_string_fragment_token1, aux_sym__multiline_string_fragment_token2, - ACTIONS(2592), 2, + ACTIONS(2611), 2, aux_sym__escape_sequence_token1, sym_escape_sequence, - ACTIONS(2594), 2, + ACTIONS(2613), 2, sym_line_comment, sym_block_comment, - STATE(893), 4, + STATE(900), 4, sym__multiline_string_fragment, sym_string_interpolation, sym__escape_sequence, aux_sym__multiline_string_literal_repeat1, - [24673] = 5, - ACTIONS(2596), 1, + [25070] = 6, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2617), 1, anon_sym_static, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1214), 2, + STATE(1205), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24696] = 5, - STATE(859), 1, - sym__reserved_identifier, - STATE(1372), 1, - sym__variable_declarator_id, + [25095] = 8, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(1525), 1, + anon_sym_COLON_COLON, + ACTIONS(2005), 1, + anon_sym_LBRACK, + ACTIONS(2419), 1, + anon_sym_DOT, + STATE(583), 1, + aux_sym_dimensions_repeat1, + STATE(773), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24719] = 11, + STATE(971), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [25124] = 11, ACTIONS(19), 1, anon_sym_LT, - ACTIONS(1646), 1, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2599), 1, anon_sym_extends, - ACTIONS(2602), 1, + ACTIONS(2601), 1, anon_sym_implements, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - STATE(372), 1, + STATE(270), 1, sym_class_body, - STATE(922), 1, + STATE(930), 1, sym_type_parameters, - STATE(943), 1, + STATE(963), 1, sym_superclass, - STATE(1035), 1, + STATE(1023), 1, sym_super_interfaces, - STATE(1276), 1, + STATE(1299), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24754] = 4, - ACTIONS(2606), 1, + [25159] = 4, + ACTIONS(2619), 1, anon_sym_PIPE, - STATE(891), 1, + STATE(897), 1, aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 8, + ACTIONS(2508), 8, sym_underscore_pattern, anon_sym_yield, anon_sym_open, @@ -69055,140 +69288,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - [24775] = 11, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_extends, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(302), 1, - sym_class_body, - STATE(923), 1, - sym_type_parameters, - STATE(941), 1, - sym_superclass, - STATE(1034), 1, - sym_super_interfaces, - STATE(1259), 1, - sym_permits, + [25180] = 6, + ACTIONS(1252), 1, + anon_sym_yield, + STATE(866), 1, + sym__reserved_identifier, + STATE(1357), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24810] = 6, - ACTIONS(2590), 1, - anon_sym_BSLASH_LBRACE, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + ACTIONS(1254), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [25205] = 6, + ACTIONS(1252), 1, + anon_sym_yield, + STATE(866), 1, + sym__reserved_identifier, + STATE(1317), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2309), 2, + sym_underscore_pattern, + sym_identifier, + ACTIONS(1254), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [25230] = 6, ACTIONS(2609), 1, + anon_sym_BSLASH_LBRACE, + ACTIONS(2622), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2588), 2, + ACTIONS(2607), 2, aux_sym__multiline_string_fragment_token1, aux_sym__multiline_string_fragment_token2, - ACTIONS(2594), 2, + ACTIONS(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(2611), 2, + ACTIONS(2624), 2, aux_sym__escape_sequence_token1, sym_escape_sequence, - STATE(896), 4, + STATE(902), 4, sym__multiline_string_fragment, sym_string_interpolation, sym__escape_sequence, aux_sym__multiline_string_literal_repeat1, - [24835] = 4, - ACTIONS(2483), 1, + [25255] = 4, + ACTIONS(2496), 1, anon_sym_PIPE, - STATE(891), 1, + STATE(897), 1, aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2613), 8, - sym_underscore_pattern, + ACTIONS(2626), 8, + sym_underscore_pattern, + anon_sym_yield, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + sym_identifier, + [25276] = 6, + ACTIONS(2628), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2633), 1, + anon_sym_BSLASH_LBRACE, + ACTIONS(2613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2630), 2, + aux_sym__multiline_string_fragment_token1, + aux_sym__multiline_string_fragment_token2, + ACTIONS(2636), 2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + STATE(902), 4, + sym__multiline_string_fragment, + sym_string_interpolation, + sym__escape_sequence, + aux_sym__multiline_string_literal_repeat1, + [25301] = 6, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2639), 1, + sym_identifier, + STATE(1247), 1, + sym_element_value_pair, + STATE(1335), 1, + sym__reserved_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(69), 5, + anon_sym_open, + anon_sym_module, + anon_sym_with, + anon_sym_sealed, + anon_sym_record, + [25325] = 5, + ACTIONS(433), 1, anon_sym_yield, + ACTIONS(2641), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(1069), 2, + sym_scoped_identifier, + sym__reserved_identifier, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, + [25347] = 6, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2643), 1, sym_identifier, - [24856] = 5, - STATE(859), 1, + ACTIONS(2645), 1, + sym_super, + STATE(1270), 1, sym__reserved_identifier, - STATE(1356), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24879] = 6, - ACTIONS(2615), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2620), 1, - anon_sym_BSLASH_LBRACE, - ACTIONS(2594), 2, + [25371] = 8, + ACTIONS(2647), 1, + anon_sym_RBRACE, + ACTIONS(2649), 1, + anon_sym_case, + ACTIONS(2651), 1, + anon_sym_default, + STATE(4), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1262), 1, + sym_switch_label, + ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2617), 2, - aux_sym__multiline_string_fragment_token1, - aux_sym__multiline_string_fragment_token2, - ACTIONS(2623), 2, - aux_sym__escape_sequence_token1, - sym_escape_sequence, - STATE(896), 4, - sym__multiline_string_fragment, - sym_string_interpolation, - sym__escape_sequence, - aux_sym__multiline_string_literal_repeat1, - [24904] = 4, - ACTIONS(2626), 1, + STATE(937), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + STATE(954), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [25399] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2653), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1245), 2, + STATE(1042), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24924] = 4, - ACTIONS(2628), 1, + [25421] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2655), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1293), 2, + STATE(1203), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24944] = 2, + [25443] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2630), 9, + ACTIONS(2657), 9, anon_sym_yield, anon_sym_open, anon_sym_module, @@ -69198,11 +69502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - [24960] = 2, + [25459] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2632), 9, + ACTIONS(2659), 9, anon_sym_yield, anon_sym_open, anon_sym_module, @@ -69212,542 +69516,487 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, sym_identifier, - [24976] = 4, - ACTIONS(2634), 1, + [25475] = 5, + ACTIONS(1252), 1, + anon_sym_yield, + ACTIONS(2661), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1120), 2, + STATE(628), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(1254), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [24996] = 5, - ACTIONS(2636), 1, + [25497] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2663), 1, sym_identifier, - ACTIONS(2638), 1, - sym_super, - STATE(1280), 1, - sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, + STATE(1090), 2, + sym_scoped_identifier, + sym__reserved_identifier, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25018] = 4, - ACTIONS(2640), 1, + [25519] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2665), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1208), 2, + STATE(1101), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25038] = 4, - ACTIONS(2642), 1, + [25541] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2667), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1116), 2, + STATE(1146), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25058] = 4, - ACTIONS(2644), 1, + [25563] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2669), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1167), 2, + STATE(1229), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25078] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1508), 9, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [25094] = 8, - ACTIONS(2646), 1, - anon_sym_RBRACE, - ACTIONS(2648), 1, - anon_sym_case, - ACTIONS(2650), 1, - anon_sym_default, - STATE(4), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1219), 1, - sym_switch_label, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(935), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - STATE(958), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [25122] = 4, - ACTIONS(2652), 1, + [25585] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2671), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1220), 2, + STATE(1252), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25142] = 4, - ACTIONS(2654), 1, + [25607] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2673), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(623), 2, + STATE(1132), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(1241), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25162] = 4, - ACTIONS(2656), 1, + [25629] = 5, + ACTIONS(2675), 1, sym_identifier, + ACTIONS(2677), 1, + anon_sym_yield, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1065), 2, + STATE(632), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(2679), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25182] = 4, - ACTIONS(2658), 1, + [25651] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2681), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(484), 2, + STATE(487), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25202] = 4, - ACTIONS(2660), 1, + [25673] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2683), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(754), 2, + STATE(1040), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(2662), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25222] = 4, - ACTIONS(2664), 1, + [25695] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2685), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1230), 2, + STATE(1147), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25242] = 4, - ACTIONS(2666), 1, + [25717] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2687), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1049), 2, + STATE(1145), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25262] = 4, - ACTIONS(2668), 1, + [25739] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1525), 9, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [25755] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2689), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1032), 2, + STATE(1251), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25282] = 4, - ACTIONS(2670), 1, + [25777] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2691), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1011), 2, + STATE(1200), 2, sym_scoped_identifier, sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25302] = 4, - ACTIONS(2672), 1, + [25799] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2693), 1, sym_identifier, + STATE(1250), 1, + sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1168), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25322] = 4, - ACTIONS(2674), 1, + [25820] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2695), 1, sym_identifier, + STATE(1207), 1, + sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1171), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25342] = 4, - ACTIONS(2636), 1, + [25841] = 5, + ACTIONS(433), 1, + anon_sym_yield, + ACTIONS(2643), 1, sym_identifier, - STATE(1280), 1, + STATE(1270), 1, sym__reserved_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, + ACTIONS(69), 5, anon_sym_open, anon_sym_module, anon_sym_with, anon_sym_sealed, anon_sym_record, - [25361] = 9, + [25862] = 9, ACTIONS(19), 1, anon_sym_LT, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - ACTIONS(2676), 1, + ACTIONS(2697), 1, anon_sym_extends, - ACTIONS(2678), 1, + ACTIONS(2699), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(374), 1, sym_interface_body, - STATE(938), 1, + STATE(984), 1, sym_type_parameters, - STATE(1007), 1, + STATE(1018), 1, sym_extends_interfaces, - STATE(1239), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25390] = 4, - ACTIONS(2680), 1, - sym_identifier, - STATE(1270), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25409] = 9, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_extends, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(362), 1, - sym_class_body, - STATE(939), 1, - sym_superclass, - STATE(1019), 1, - sym_super_interfaces, - STATE(1294), 1, + STATE(1220), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25438] = 9, - ACTIONS(1646), 1, + [25891] = 9, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2599), 1, anon_sym_extends, - ACTIONS(2602), 1, + ACTIONS(2601), 1, anon_sym_implements, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - STATE(351), 1, + STATE(300), 1, sym_class_body, - STATE(954), 1, + STATE(946), 1, sym_superclass, - STATE(1016), 1, + STATE(1043), 1, sym_super_interfaces, - STATE(1207), 1, + STATE(1211), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25467] = 9, + [25920] = 9, ACTIONS(19), 1, anon_sym_LT, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - ACTIONS(2676), 1, + ACTIONS(2697), 1, anon_sym_extends, - ACTIONS(2678), 1, + ACTIONS(2699), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(273), 1, sym_interface_body, - STATE(973), 1, + STATE(977), 1, sym_type_parameters, - STATE(1017), 1, + STATE(1034), 1, sym_extends_interfaces, - STATE(1191), 1, + STATE(1241), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25496] = 4, - ACTIONS(2682), 1, - sym_identifier, - STATE(1222), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25515] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2684), 7, - anon_sym_DASH_GT, - anon_sym_LBRACK, + [25949] = 9, + ACTIONS(1659), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, + ACTIONS(2599), 1, + anon_sym_extends, + ACTIONS(2601), 1, anon_sym_implements, - anon_sym_throws, - [25529] = 7, - ACTIONS(2686), 1, - anon_sym_RBRACE, - ACTIONS(2688), 1, - anon_sym_case, - ACTIONS(2691), 1, - anon_sym_default, - STATE(4), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1322), 1, - sym_switch_label, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(927), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [25553] = 2, + ACTIONS(2603), 1, + anon_sym_permits, + STATE(381), 1, + sym_class_body, + STATE(975), 1, + sym_superclass, + STATE(1029), 1, + sym_super_interfaces, + STATE(1213), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2694), 7, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_implements, - anon_sym_throws, - [25567] = 6, - ACTIONS(1321), 1, + [25978] = 6, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1646), 1, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(1004), 1, + STATE(989), 1, sym_argument_list, - STATE(1085), 1, + STATE(1172), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 3, + ACTIONS(2701), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, - [25589] = 5, - ACTIONS(424), 1, + [26000] = 5, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2698), 1, + ACTIONS(2703), 1, sym_identifier, - STATE(1227), 1, + STATE(1258), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(978), 4, + STATE(951), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25609] = 2, + [26020] = 7, + ACTIONS(2705), 1, + anon_sym_RBRACE, + ACTIONS(2707), 1, + anon_sym_case, + ACTIONS(2710), 1, + anon_sym_default, + STATE(4), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1373), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 7, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_implements, - anon_sym_throws, - [25623] = 6, - ACTIONS(1321), 1, + STATE(935), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [26044] = 6, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1646), 1, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(1006), 1, sym_argument_list, - STATE(1150), 1, + STATE(1082), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2702), 3, + ACTIONS(2713), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, - [25645] = 5, - ACTIONS(424), 1, + [26066] = 7, + ACTIONS(2651), 1, + anon_sym_default, + ACTIONS(2715), 1, + anon_sym_RBRACE, + ACTIONS(2717), 1, + anon_sym_case, + STATE(4), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1373), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(935), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [26090] = 5, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2698), 1, + ACTIONS(2703), 1, sym_identifier, - STATE(1122), 1, + STATE(1128), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(978), 4, + STATE(951), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25665] = 2, + [26110] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2719), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -69755,28 +70004,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [25679] = 7, - ACTIONS(2650), 1, - anon_sym_default, - ACTIONS(2706), 1, - anon_sym_RBRACE, - ACTIONS(2708), 1, - anon_sym_case, - STATE(4), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1322), 1, - sym_switch_label, + [26124] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(927), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [25703] = 2, + ACTIONS(2721), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [26138] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(2723), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -69784,127 +70028,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [25717] = 6, - ACTIONS(2712), 1, - anon_sym_DQUOTE, - ACTIONS(2714), 1, - sym_string_fragment, - ACTIONS(2716), 1, - anon_sym_BSLASH_LBRACE, - ACTIONS(2718), 1, - sym_escape_sequence, - ACTIONS(2594), 2, + [26152] = 2, + ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(960), 2, - sym_string_interpolation, - aux_sym__string_literal_repeat1, - [25738] = 7, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2676), 1, - anon_sym_extends, - ACTIONS(2678), 1, + ACTIONS(2725), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(368), 1, - sym_interface_body, - STATE(1036), 1, - sym_extends_interfaces, - STATE(1248), 1, - sym_permits, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [26166] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25761] = 7, - ACTIONS(1646), 1, + ACTIONS(2727), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(2602), 1, + anon_sym_SEMI, + anon_sym_AT, anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(262), 1, - sym_class_body, - STATE(1052), 1, - sym_super_interfaces, - STATE(1279), 1, - sym_permits, + anon_sym_throws, + [26180] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25784] = 2, + ACTIONS(2729), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [26193] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 6, + ACTIONS(2731), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [25797] = 7, - ACTIONS(1646), 1, + [26206] = 7, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2601), 1, anon_sym_implements, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - STATE(352), 1, + STATE(326), 1, sym_class_body, - STATE(1018), 1, + STATE(1063), 1, sym_super_interfaces, - STATE(1210), 1, + STATE(1285), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25820] = 4, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2722), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(792), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [25837] = 7, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(363), 1, - sym_class_body, - STATE(1023), 1, - sym_super_interfaces, - STATE(1184), 1, - sym_permits, + [26229] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25860] = 4, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2724), 1, - sym_identifier, + ACTIONS(2733), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [26242] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [25877] = 4, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(2726), 1, + ACTIONS(2733), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [26255] = 4, + ACTIONS(2333), 1, anon_sym_LBRACK, + ACTIONS(2735), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -69913,334 +70125,286 @@ static const uint16_t ts_small_parse_table[] = { sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25894] = 6, - ACTIONS(2165), 1, - anon_sym_COMMA, - ACTIONS(2169), 1, - anon_sym_when, - STATE(981), 1, - aux_sym_argument_list_repeat1, - STATE(1238), 1, - sym_guard, + [26272] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [25915] = 4, - ACTIONS(424), 1, + ACTIONS(2733), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [26285] = 4, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2730), 1, + ACTIONS(2738), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(950), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25932] = 4, - ACTIONS(424), 1, + [26302] = 4, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2732), 1, + ACTIONS(2740), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(951), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25949] = 4, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2734), 1, + [26319] = 4, + ACTIONS(435), 1, anon_sym_AT, + ACTIONS(2742), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, + STATE(980), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25966] = 4, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2737), 1, - sym_identifier, + [26336] = 6, + ACTIONS(2649), 1, + anon_sym_case, + ACTIONS(2651), 1, + anon_sym_default, + ACTIONS(2715), 1, + anon_sym_RBRACE, + STATE(1380), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [25983] = 4, - ACTIONS(424), 1, + STATE(967), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [26357] = 4, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2739), 1, + ACTIONS(2744), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26000] = 2, + [26374] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 6, + ACTIONS(2746), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26013] = 2, + [26387] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 6, + ACTIONS(2748), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26026] = 7, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(277), 1, - sym_class_body, - STATE(1047), 1, - sym_super_interfaces, - STATE(1178), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [26049] = 2, + [26400] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2743), 6, + ACTIONS(2750), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26062] = 6, - ACTIONS(2716), 1, - anon_sym_BSLASH_LBRACE, - ACTIONS(2745), 1, - anon_sym_DQUOTE, - ACTIONS(2747), 1, - sym_string_fragment, - ACTIONS(2749), 1, - sym_escape_sequence, - ACTIONS(2594), 2, - sym_line_comment, - sym_block_comment, - STATE(937), 2, - sym_string_interpolation, - aux_sym__string_literal_repeat1, - [26083] = 4, - ACTIONS(424), 1, + [26413] = 4, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2751), 1, - sym_identifier, + ACTIONS(2752), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(944), 4, + STATE(949), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26100] = 6, - ACTIONS(2648), 1, - anon_sym_case, - ACTIONS(2650), 1, - anon_sym_default, - ACTIONS(2706), 1, - anon_sym_RBRACE, - STATE(1328), 1, - sym_switch_label, + [26430] = 4, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(2754), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(976), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [26121] = 2, + STATE(949), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [26447] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 6, + ACTIONS(2756), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26134] = 6, - ACTIONS(2755), 1, + [26460] = 6, + ACTIONS(2758), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, - sym_string_fragment, ACTIONS(2760), 1, + sym_string_fragment, + ACTIONS(2762), 1, anon_sym_BSLASH_LBRACE, - ACTIONS(2763), 1, + ACTIONS(2764), 1, sym_escape_sequence, - ACTIONS(2594), 2, + ACTIONS(2613), 2, sym_line_comment, sym_block_comment, - STATE(960), 2, + STATE(983), 2, sym_string_interpolation, aux_sym__string_literal_repeat1, - [26155] = 4, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2766), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(942), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [26172] = 4, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(2768), 1, - anon_sym_LBRACK, + [26481] = 7, + ACTIONS(1659), 1, + anon_sym_LBRACE, + ACTIONS(2601), 1, + anon_sym_implements, + ACTIONS(2603), 1, + anon_sym_permits, + STATE(301), 1, + sym_class_body, + STATE(1047), 1, + sym_super_interfaces, + STATE(1216), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [26189] = 4, - ACTIONS(464), 1, + [26504] = 4, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2770), 1, - anon_sym_LBRACK, + ACTIONS(2766), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, + STATE(968), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26206] = 2, + [26521] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 6, + ACTIONS(2768), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26219] = 2, + [26534] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2774), 6, + ACTIONS(2770), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26232] = 4, - ACTIONS(464), 1, + [26547] = 6, + ACTIONS(2772), 1, + anon_sym_RBRACE, + ACTIONS(2774), 1, + anon_sym_case, + ACTIONS(2777), 1, + anon_sym_default, + STATE(1380), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(967), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [26568] = 4, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2776), 1, - anon_sym_LBRACK, + ACTIONS(2780), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26249] = 2, + [26585] = 4, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(2782), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [26262] = 2, - ACTIONS(2594), 2, + STATE(949), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [26602] = 2, + ACTIONS(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 6, + ACTIONS(2784), 6, anon_sym_DQUOTE_DQUOTE_DQUOTE, aux_sym__multiline_string_fragment_token1, aux_sym__multiline_string_fragment_token2, anon_sym_BSLASH_LBRACE, aux_sym__escape_sequence_token1, sym_escape_sequence, - [26275] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2782), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [26288] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2784), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [26301] = 2, + [26615] = 4, + ACTIONS(475), 1, + anon_sym_AT, + ACTIONS(2786), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, - sym_block_comment, - ACTIONS(2786), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [26314] = 2, + sym_block_comment, + STATE(949), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [26632] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, @@ -70251,26 +70415,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26327] = 7, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2676), 1, - anon_sym_extends, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(324), 1, - sym_interface_body, - STATE(1055), 1, - sym_extends_interfaces, - STATE(1179), 1, - sym_permits, + [26645] = 4, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(2790), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26350] = 4, - ACTIONS(464), 1, + STATE(955), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [26662] = 4, + ACTIONS(475), 1, anon_sym_AT, - ACTIONS(2790), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, @@ -70280,4548 +70441,4660 @@ static const uint16_t ts_small_parse_table[] = { sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26367] = 2, + [26679] = 7, + ACTIONS(1659), 1, + anon_sym_LBRACE, + ACTIONS(2601), 1, + anon_sym_implements, + ACTIONS(2603), 1, + anon_sym_permits, + STATE(276), 1, + sym_class_body, + STATE(1020), 1, + sym_super_interfaces, + STATE(1249), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26702] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 6, + ACTIONS(2794), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26380] = 6, - ACTIONS(2792), 1, - anon_sym_RBRACE, - ACTIONS(2794), 1, - anon_sym_case, - ACTIONS(2797), 1, - anon_sym_default, - STATE(1328), 1, - sym_switch_label, + [26715] = 7, + ACTIONS(2603), 1, + anon_sym_permits, + ACTIONS(2697), 1, + anon_sym_extends, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(306), 1, + sym_interface_body, + STATE(1050), 1, + sym_extends_interfaces, + STATE(1226), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(976), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [26401] = 2, + [26738] = 6, + ACTIONS(2762), 1, + anon_sym_BSLASH_LBRACE, + ACTIONS(2796), 1, + anon_sym_DQUOTE, + ACTIONS(2798), 1, + sym_string_fragment, + ACTIONS(2800), 1, + sym_escape_sequence, + ACTIONS(2613), 2, + sym_line_comment, + sym_block_comment, + STATE(962), 2, + sym_string_interpolation, + aux_sym__string_literal_repeat1, + [26759] = 6, + ACTIONS(2187), 1, + anon_sym_COMMA, + ACTIONS(2191), 1, + anon_sym_when, + STATE(990), 1, + aux_sym_argument_list_repeat1, + STATE(1215), 1, + sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2800), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [26414] = 4, - ACTIONS(424), 1, + ACTIONS(2802), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [26780] = 4, + ACTIONS(435), 1, anon_sym_AT, - ACTIONS(2802), 1, + ACTIONS(2804), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, + STATE(715), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26431] = 2, - ACTIONS(2594), 2, + [26797] = 7, + ACTIONS(1659), 1, + anon_sym_LBRACE, + ACTIONS(2601), 1, + anon_sym_implements, + ACTIONS(2603), 1, + anon_sym_permits, + STATE(382), 1, + sym_class_body, + STATE(1031), 1, + sym_super_interfaces, + STATE(1222), 1, + sym_permits, + ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 6, + [26820] = 2, + ACTIONS(2613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2806), 6, anon_sym_DQUOTE_DQUOTE_DQUOTE, aux_sym__multiline_string_fragment_token1, aux_sym__multiline_string_fragment_token2, anon_sym_BSLASH_LBRACE, aux_sym__escape_sequence_token1, sym_escape_sequence, - [26444] = 4, - STATE(1256), 1, - sym__wildcard_bounds, - ACTIONS(3), 2, + [26833] = 6, + ACTIONS(2808), 1, + anon_sym_DQUOTE, + ACTIONS(2810), 1, + sym_string_fragment, + ACTIONS(2813), 1, + anon_sym_BSLASH_LBRACE, + ACTIONS(2816), 1, + sym_escape_sequence, + ACTIONS(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 2, - anon_sym_GT, - anon_sym_COMMA, - ACTIONS(2808), 2, + STATE(983), 2, + sym_string_interpolation, + aux_sym__string_literal_repeat1, + [26854] = 7, + ACTIONS(2603), 1, + anon_sym_permits, + ACTIONS(2697), 1, anon_sym_extends, - sym_super, - [26460] = 4, - ACTIONS(2810), 1, - anon_sym_COMMA, - STATE(981), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(266), 1, + sym_interface_body, + STATE(1024), 1, + sym_extends_interfaces, + STATE(1283), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2184), 3, - anon_sym_DASH_GT, - anon_sym_COLON, - anon_sym_when, - [26476] = 6, - ACTIONS(2180), 1, - anon_sym_COMMA, - ACTIONS(2182), 1, - anon_sym_when, - ACTIONS(2728), 1, - anon_sym_COLON, - STATE(986), 1, - aux_sym_argument_list_repeat1, - STATE(1238), 1, - sym_guard, + [26877] = 4, + ACTIONS(435), 1, + anon_sym_AT, + ACTIONS(2819), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26496] = 4, - ACTIONS(2813), 1, - anon_sym_COMMA, - STATE(983), 1, - aux_sym_type_list_repeat1, + STATE(952), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [26894] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_permits, - [26512] = 6, - ACTIONS(2216), 1, - anon_sym_SEMI, - ACTIONS(2317), 1, + ACTIONS(2821), 6, anon_sym_RBRACE, - ACTIONS(2818), 1, - anon_sym_COMMA, - STATE(1043), 1, - aux_sym_enum_body_repeat1, - STATE(1375), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [26532] = 6, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [26907] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2506), 1, anon_sym_DOT, - STATE(493), 1, + STATE(490), 1, sym_argument_list, - STATE(715), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26552] = 4, - ACTIONS(2820), 1, - anon_sym_COMMA, - STATE(986), 1, - aux_sym_argument_list_repeat1, + [26927] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2184), 3, + ACTIONS(2823), 5, anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_when, - [26568] = 4, - STATE(1247), 1, - sym__wildcard_bounds, + anon_sym_SEMI, + [26939] = 4, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(1126), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 2, - anon_sym_extends, - sym_super, - ACTIONS(2823), 2, - anon_sym_GT, + ACTIONS(2825), 3, + anon_sym_RBRACE, anon_sym_COMMA, - [26584] = 5, - ACTIONS(2825), 1, - anon_sym_catch, + anon_sym_SEMI, + [26955] = 4, ACTIONS(2827), 1, - anon_sym_finally, - STATE(336), 1, - sym_finally_clause, + anon_sym_COMMA, + STATE(990), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(158), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [26602] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - STATE(492), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, + ACTIONS(2203), 3, + anon_sym_DASH_GT, + anon_sym_COLON, + anon_sym_when, + [26971] = 6, + ACTIONS(2197), 1, + anon_sym_COMMA, + ACTIONS(2199), 1, + anon_sym_when, + ACTIONS(2802), 1, + anon_sym_COLON, + STATE(1009), 1, + aux_sym_argument_list_repeat1, + STATE(1215), 1, + sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26622] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, + [26991] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2492), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1332), 3, + anon_sym_LBRACK, anon_sym_DOT, - STATE(497), 1, + anon_sym_COLON_COLON, + [27005] = 4, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(563), 1, sym_argument_list, - STATE(715), 1, - sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26642] = 6, + ACTIONS(1332), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [27021] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2506), 1, anon_sym_DOT, - STATE(499), 1, + STATE(492), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26662] = 6, + [27041] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(485), 1, + STATE(494), 1, sym_argument_list, - STATE(715), 1, + STATE(745), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26682] = 6, + [27061] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2506), 1, anon_sym_DOT, - STATE(487), 1, + STATE(501), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26702] = 6, + [27081] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(495), 1, + STATE(502), 1, sym_argument_list, - STATE(715), 1, + STATE(745), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26722] = 2, + [27101] = 4, + ACTIONS(2830), 1, + anon_sym_COMMA, + STATE(998), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2829), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2833), 3, + anon_sym_LBRACE, anon_sym_SEMI, - [26734] = 6, + anon_sym_permits, + [27117] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(496), 1, + STATE(498), 1, sym_argument_list, - STATE(735), 1, + STATE(745), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26754] = 6, + [27137] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(489), 1, + STATE(488), 1, sym_argument_list, - STATE(715), 1, + STATE(745), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26774] = 6, + [27157] = 5, + ACTIONS(2835), 1, + anon_sym_catch, + ACTIONS(2837), 1, + anon_sym_finally, + STATE(320), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(158), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [27175] = 4, + STATE(1255), 1, + sym__wildcard_bounds, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2839), 2, + anon_sym_GT, + anon_sym_COMMA, + ACTIONS(2841), 2, + anon_sym_extends, + sym_super, + [27191] = 6, + ACTIONS(2245), 1, + anon_sym_SEMI, + ACTIONS(2315), 1, + anon_sym_RBRACE, + ACTIONS(2843), 1, + anon_sym_COMMA, + STATE(1036), 1, + aux_sym_enum_body_repeat1, + STATE(1325), 1, + sym_enum_body_declarations, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27211] = 6, + ACTIONS(2245), 1, + anon_sym_SEMI, + ACTIONS(2845), 1, + anon_sym_RBRACE, + ACTIONS(2847), 1, + anon_sym_COMMA, + STATE(1003), 1, + aux_sym_enum_body_repeat1, + STATE(1375), 1, + sym_enum_body_declarations, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27231] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2506), 1, anon_sym_DOT, STATE(491), 1, sym_argument_list, - STATE(735), 1, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26794] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2485), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(1319), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [26808] = 4, - ACTIONS(1646), 1, + [27251] = 4, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(1163), 1, + STATE(1091), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 3, + ACTIONS(2849), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, - [26824] = 6, + [27267] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(488), 1, + STATE(499), 1, sym_argument_list, - STATE(715), 1, + STATE(745), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26844] = 6, + [27287] = 6, ACTIONS(252), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(486), 1, + STATE(493), 1, sym_argument_list, - STATE(735), 1, + STATE(745), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26864] = 4, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(569), 1, - sym_argument_list, + [27307] = 4, + ACTIONS(2851), 1, + anon_sym_COMMA, + STATE(1009), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1319), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [26880] = 4, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_class_body, + ACTIONS(2203), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_when, + [27323] = 4, + STATE(1294), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [26896] = 6, - ACTIONS(2216), 1, - anon_sym_SEMI, - ACTIONS(2835), 1, - anon_sym_RBRACE, - ACTIONS(2837), 1, + ACTIONS(2841), 2, + anon_sym_extends, + sym_super, + ACTIONS(2854), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(984), 1, - aux_sym_enum_body_repeat1, - STATE(1368), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [26916] = 4, + [27339] = 6, ACTIONS(252), 1, anon_sym_LT, - STATE(1202), 1, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2506), 1, + anon_sym_DOT, + STATE(495), 1, + sym_argument_list, + STATE(734), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 2, - anon_sym_new, - sym_identifier, - [26931] = 5, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(370), 1, - sym_interface_body, - STATE(1290), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [26948] = 4, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(2845), 1, - anon_sym_COLON, + [27359] = 6, + ACTIONS(252), 1, + anon_sym_LT, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2506), 1, + anon_sym_DOT, + STATE(496), 1, + sym_argument_list, + STATE(734), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [26963] = 4, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(2847), 1, - anon_sym_COLON, + [27379] = 5, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(2856), 1, + anon_sym_RPAREN, + ACTIONS(2858), 1, + anon_sym_AMP, + STATE(1125), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [26978] = 4, - ACTIONS(2851), 1, - anon_sym_throws, - STATE(1177), 1, - sym_throws, - ACTIONS(3), 2, + [27396] = 3, + ACTIONS(2860), 1, + sym_string_fragment, + ACTIONS(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(2849), 2, + ACTIONS(2784), 3, + anon_sym_DQUOTE, + anon_sym_BSLASH_LBRACE, + sym_escape_sequence, + [27409] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [26993] = 5, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2853), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_SEMI, - STATE(1096), 1, - aux_sym_provides_module_directive_repeat1, + ACTIONS(2601), 1, + anon_sym_implements, + STATE(263), 1, + sym_class_body, + STATE(1303), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27010] = 2, + [27426] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2857), 4, + ACTIONS(2862), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [27021] = 5, - ACTIONS(2851), 1, - anon_sym_throws, - ACTIONS(2859), 1, + [27437] = 5, + ACTIONS(2864), 1, anon_sym_LBRACE, - STATE(524), 1, + ACTIONS(2866), 1, + anon_sym_throws, + STATE(572), 1, sym_constructor_body, - STATE(1254), 1, + STATE(1259), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27038] = 4, - ACTIONS(2861), 1, - anon_sym_COMMA, - STATE(1044), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2863), 2, - anon_sym_LBRACE, + [27454] = 5, + ACTIONS(2603), 1, anon_sym_permits, - [27053] = 5, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(2865), 1, - anon_sym_RPAREN, - ACTIONS(2867), 1, - anon_sym_AMP, - STATE(1131), 1, - aux_sym_cast_expression_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [27070] = 5, - ACTIONS(1646), 1, + ACTIONS(2699), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(280), 1, - sym_class_body, - STATE(1180), 1, + STATE(268), 1, + sym_interface_body, + STATE(1184), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27087] = 5, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_interface_body, - STATE(1266), 1, - sym_permits, + [27471] = 4, + ACTIONS(2868), 1, + anon_sym_COMMA, + STATE(998), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27104] = 5, - ACTIONS(1646), 1, + ACTIONS(2870), 2, + anon_sym_LBRACE, + anon_sym_permits, + [27486] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - STATE(284), 1, + STATE(311), 1, sym_class_body, - STATE(1199), 1, + STATE(1280), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27121] = 5, - ACTIONS(1646), 1, + [27503] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - STATE(263), 1, + STATE(384), 1, sym_class_body, - STATE(1281), 1, + STATE(1232), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27138] = 5, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2869), 1, - anon_sym_LBRACE, - STATE(343), 1, - sym_enum_body, - STATE(1268), 1, - sym_super_interfaces, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [27155] = 5, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(1028), 1, - sym_formal_parameters, - STATE(1275), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [27172] = 4, - ACTIONS(2871), 1, - anon_sym_AMP, - STATE(1039), 1, - aux_sym_type_bound_repeat1, + [27520] = 4, + ACTIONS(2191), 1, + anon_sym_when, + STATE(1286), 1, + sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2873), 2, - anon_sym_GT, - anon_sym_COMMA, - [27187] = 5, - ACTIONS(1646), 1, + ACTIONS(2185), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [27535] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - STATE(265), 1, + STATE(302), 1, sym_class_body, - STATE(1283), 1, + STATE(1218), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27204] = 5, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2869), 1, + [27552] = 5, + ACTIONS(2603), 1, + anon_sym_permits, + ACTIONS(2699), 1, anon_sym_LBRACE, - STATE(379), 1, - sym_enum_body, - STATE(1187), 1, - sym_super_interfaces, + STATE(298), 1, + sym_interface_body, + STATE(1281), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27221] = 5, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(2489), 1, + [27569] = 5, + ACTIONS(2872), 1, anon_sym_LPAREN, - STATE(1048), 1, - sym_formal_parameters, - STATE(1215), 1, - sym_type_parameters, + ACTIONS(2874), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym_block, + STATE(1199), 1, + sym_resource_specification, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27238] = 4, - ACTIONS(2877), 1, + [27586] = 4, + ACTIONS(2878), 1, anon_sym_extends, - STATE(1267), 1, + STATE(1276), 1, sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 2, + ACTIONS(2876), 2, anon_sym_GT, anon_sym_COMMA, - [27253] = 3, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2843), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [27266] = 5, - ACTIONS(1646), 1, + [27601] = 5, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - STATE(385), 1, - sym_class_body, - STATE(1186), 1, - sym_super_interfaces, + ACTIONS(2866), 1, + anon_sym_throws, + STATE(544), 1, + sym_constructor_body, + STATE(1233), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27283] = 2, + [27618] = 4, + ACTIONS(2868), 1, + anon_sym_COMMA, + STATE(1019), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [27294] = 4, - ACTIONS(2169), 1, - anon_sym_when, - STATE(1273), 1, - sym_guard, + ACTIONS(2880), 2, + anon_sym_LBRACE, + anon_sym_permits, + [27633] = 5, + ACTIONS(1659), 1, + anon_sym_LBRACE, + ACTIONS(2603), 1, + anon_sym_permits, + STATE(277), 1, + sym_class_body, + STATE(1304), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [27309] = 4, - ACTIONS(2841), 1, + [27650] = 4, + ACTIONS(2882), 1, anon_sym_EQ, - ACTIONS(2881), 1, + ACTIONS(2886), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [27324] = 5, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2883), 1, + ACTIONS(2884), 2, anon_sym_COMMA, - ACTIONS(2885), 1, anon_sym_SEMI, - STATE(1090), 1, - aux_sym_exports_module_directive_repeat1, + [27665] = 5, + ACTIONS(1659), 1, + anon_sym_LBRACE, + ACTIONS(2603), 1, + anon_sym_permits, + STATE(279), 1, + sym_class_body, + STATE(1269), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27341] = 3, - ACTIONS(2887), 1, - sym_string_fragment, - ACTIONS(2594), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2780), 3, - anon_sym_DQUOTE, - anon_sym_BSLASH_LBRACE, - sym_escape_sequence, - [27354] = 5, - ACTIONS(1646), 1, + [27682] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(353), 1, + ACTIONS(2601), 1, + anon_sym_implements, + STATE(305), 1, sym_class_body, - STATE(1176), 1, - sym_permits, + STATE(1224), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27371] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(364), 1, - sym_class_body, - STATE(1274), 1, - sym_permits, + [27699] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27388] = 5, - ACTIONS(2604), 1, + ACTIONS(2888), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + [27710] = 5, + ACTIONS(2603), 1, anon_sym_permits, - ACTIONS(2678), 1, + ACTIONS(2699), 1, anon_sym_LBRACE, - STATE(271), 1, + STATE(308), 1, sym_interface_body, - STATE(1289), 1, + STATE(1230), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27405] = 4, - ACTIONS(2861), 1, - anon_sym_COMMA, - STATE(983), 1, - aux_sym_type_list_repeat1, + [27727] = 4, + ACTIONS(2866), 1, + anon_sym_throws, + STATE(1231), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2889), 2, + ACTIONS(2890), 2, anon_sym_LBRACE, anon_sym_SEMI, - [27420] = 4, - ACTIONS(2851), 1, - anon_sym_throws, - STATE(1181), 1, - sym_throws, + [27742] = 4, + ACTIONS(2894), 1, + anon_sym_COMMA, + STATE(1036), 1, + aux_sym_enum_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 2, - anon_sym_LBRACE, + ACTIONS(2892), 2, + anon_sym_RBRACE, anon_sym_SEMI, - [27435] = 4, - ACTIONS(2893), 1, + [27757] = 5, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(2858), 1, anon_sym_AMP, - STATE(1039), 1, - aux_sym_type_bound_repeat1, + ACTIONS(2897), 1, + anon_sym_RPAREN, + STATE(1181), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 2, - anon_sym_GT, + [27774] = 4, + ACTIONS(2868), 1, anon_sym_COMMA, - [27450] = 2, + STATE(1051), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2899), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [27461] = 2, + [27789] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 4, + ACTIONS(2901), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [27472] = 4, - ACTIONS(2861), 1, + [27800] = 5, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(2903), 1, anon_sym_COMMA, - STATE(1037), 1, - aux_sym_type_list_repeat1, + ACTIONS(2905), 1, + anon_sym_SEMI, + STATE(1164), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [27487] = 4, - ACTIONS(2906), 1, - anon_sym_COMMA, - STATE(1043), 1, - aux_sym_enum_body_repeat1, + [27817] = 4, + ACTIONS(2882), 1, + anon_sym_EQ, + ACTIONS(2907), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 2, - anon_sym_RBRACE, + ACTIONS(2884), 2, + anon_sym_COMMA, anon_sym_SEMI, - [27502] = 4, - ACTIONS(2861), 1, + [27832] = 5, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(2909), 1, anon_sym_COMMA, - STATE(983), 1, - aux_sym_type_list_repeat1, + ACTIONS(2911), 1, + anon_sym_SEMI, + STATE(1070), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 2, + [27849] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, + ACTIONS(2603), 1, anon_sym_permits, - [27517] = 5, - ACTIONS(2911), 1, - anon_sym_LPAREN, + STATE(327), 1, + sym_class_body, + STATE(1290), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27866] = 5, + ACTIONS(2601), 1, + anon_sym_implements, ACTIONS(2913), 1, anon_sym_LBRACE, - STATE(988), 1, - sym_block, - STATE(1189), 1, - sym_resource_specification, + STATE(256), 1, + sym_enum_body, + STATE(1260), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27534] = 4, - ACTIONS(2851), 1, - anon_sym_throws, - STATE(1193), 1, - sym_throws, + [27883] = 5, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(2504), 1, + anon_sym_LPAREN, + STATE(1015), 1, + sym_formal_parameters, + STATE(1227), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27900] = 4, + ACTIONS(252), 1, + anon_sym_LT, + STATE(1186), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, ACTIONS(2915), 2, + anon_sym_new, + sym_identifier, + [27915] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [27549] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2603), 1, anon_sym_permits, - STATE(375), 1, + STATE(329), 1, sym_class_body, - STATE(1257), 1, + STATE(1300), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27566] = 5, - ACTIONS(1646), 1, + [27932] = 4, + ACTIONS(2882), 1, + anon_sym_EQ, + ACTIONS(2917), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2884), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [27947] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2601), 1, anon_sym_implements, - STATE(367), 1, + STATE(332), 1, sym_class_body, - STATE(1244), 1, + STATE(1219), 1, sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27583] = 5, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2883), 1, + [27964] = 5, + ACTIONS(2603), 1, + anon_sym_permits, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(335), 1, + sym_interface_body, + STATE(1246), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27981] = 4, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2917), 1, + STATE(998), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2919), 2, + anon_sym_LBRACE, anon_sym_SEMI, - STATE(1093), 1, - aux_sym_exports_module_directive_repeat1, + [27996] = 4, + ACTIONS(2921), 1, + anon_sym_AMP, + STATE(1052), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27600] = 4, - ACTIONS(2871), 1, + ACTIONS(2924), 2, + anon_sym_GT, + anon_sym_COMMA, + [28011] = 4, + ACTIONS(2926), 1, anon_sym_AMP, - STATE(1022), 1, + STATE(1052), 1, aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2919), 2, + ACTIONS(2928), 2, anon_sym_GT, anon_sym_COMMA, - [27615] = 5, - ACTIONS(2851), 1, - anon_sym_throws, - ACTIONS(2859), 1, - anon_sym_LBRACE, - STATE(536), 1, - sym_constructor_body, - STATE(1233), 1, - sym_throws, + [28026] = 4, + ACTIONS(2878), 1, + anon_sym_extends, + STATE(1190), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27632] = 5, - ACTIONS(1646), 1, + ACTIONS(2930), 2, + anon_sym_GT, + anon_sym_COMMA, + [28041] = 5, + ACTIONS(2601), 1, + anon_sym_implements, + ACTIONS(2913), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(286), 1, - sym_class_body, - STATE(1226), 1, - sym_permits, + STATE(271), 1, + sym_enum_body, + STATE(1193), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27649] = 2, + [28058] = 5, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(2504), 1, + anon_sym_LPAREN, + STATE(1032), 1, + sym_formal_parameters, + STATE(1209), 1, + sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 4, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_permits, - [27660] = 4, - ACTIONS(2877), 1, - anon_sym_extends, - STATE(1234), 1, - sym_type_bound, + [28075] = 4, + ACTIONS(2926), 1, + anon_sym_AMP, + STATE(1053), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2921), 2, + ACTIONS(2932), 2, anon_sym_GT, anon_sym_COMMA, - [27675] = 5, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(360), 1, - sym_interface_body, - STATE(1204), 1, - sym_permits, + [28090] = 3, + ACTIONS(2882), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27692] = 5, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(2867), 1, - anon_sym_AMP, - ACTIONS(2923), 1, + ACTIONS(2884), 3, anon_sym_RPAREN, - STATE(1172), 1, - aux_sym_cast_expression_repeat1, + anon_sym_COMMA, + anon_sym_SEMI, + [28103] = 4, + ACTIONS(2866), 1, + anon_sym_throws, + STATE(1257), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27709] = 5, - ACTIONS(1321), 1, + ACTIONS(2934), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [28118] = 5, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1810), 1, anon_sym_COLON_COLON, - ACTIONS(2925), 1, + ACTIONS(2936), 1, anon_sym_DOT, - STATE(1351), 1, + STATE(1338), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27726] = 4, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_COLON, + [28135] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, + ACTIONS(2938), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [27741] = 4, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(2929), 1, - anon_sym_COLON, + [28146] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, + ACTIONS(2833), 4, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_SEMI, - [27756] = 5, - ACTIONS(1646), 1, + anon_sym_permits, + [28157] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - STATE(348), 1, + ACTIONS(2603), 1, + anon_sym_permits, + STATE(344), 1, sym_class_body, - STATE(1258), 1, - sym_super_interfaces, + STATE(1204), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27773] = 4, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(2931), 1, - anon_sym_COLON, + [28174] = 4, + ACTIONS(2866), 1, + anon_sym_throws, + STATE(1271), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, - anon_sym_COMMA, + ACTIONS(2940), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [27788] = 5, - ACTIONS(1646), 1, + [28189] = 5, + ACTIONS(1659), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2601), 1, anon_sym_implements, - STATE(268), 1, + STATE(293), 1, sym_class_body, - STATE(1286), 1, + STATE(1272), 1, sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27805] = 4, - ACTIONS(2194), 1, - anon_sym_COMMA, - ACTIONS(2933), 1, - anon_sym_SEMI, - STATE(1151), 1, - aux_sym_for_statement_repeat1, + [28206] = 4, + ACTIONS(2882), 1, + anon_sym_EQ, + ACTIONS(2942), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27819] = 4, - ACTIONS(2935), 1, + ACTIONS(2884), 2, anon_sym_COMMA, - ACTIONS(2937), 1, anon_sym_SEMI, - STATE(1125), 1, - aux_sym__variable_declarator_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [27833] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2939), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_module_body, + [28221] = 4, + ACTIONS(2882), 1, + anon_sym_EQ, + ACTIONS(2944), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27847] = 4, - ACTIONS(1626), 1, - anon_sym_RPAREN, - ACTIONS(2941), 1, + ACTIONS(2884), 2, anon_sym_COMMA, - STATE(1078), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [28236] = 4, + ACTIONS(2882), 1, + anon_sym_EQ, + ACTIONS(2946), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27861] = 4, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2884), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [28251] = 5, + ACTIONS(1653), 1, anon_sym_DOT, - STATE(489), 1, - sym_argument_list, + ACTIONS(2903), 1, + anon_sym_COMMA, + ACTIONS(2948), 1, + anon_sym_SEMI, + STATE(1165), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27875] = 4, - ACTIONS(2943), 1, - anon_sym_RPAREN, - ACTIONS(2945), 1, + [28268] = 4, + ACTIONS(2909), 1, anon_sym_COMMA, - STATE(1068), 1, - aux_sym_inferred_parameters_repeat1, + ACTIONS(2950), 1, + anon_sym_SEMI, + STATE(1178), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27889] = 4, - ACTIONS(2948), 1, + [28282] = 4, + ACTIONS(664), 1, anon_sym_RPAREN, - ACTIONS(2950), 1, - anon_sym_AMP, - STATE(1069), 1, - aux_sym_cast_expression_repeat1, + ACTIONS(2952), 1, + anon_sym_SEMI, + STATE(1097), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27903] = 4, - ACTIONS(2953), 1, - anon_sym_RPAREN, - ACTIONS(2955), 1, - anon_sym_COMMA, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + [28296] = 4, + ACTIONS(2526), 1, + sym_identifier, + ACTIONS(2528), 1, + sym_this, + STATE(1102), 1, + aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27917] = 4, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2958), 1, - anon_sym_DOT, - STATE(1364), 1, - sym_argument_list, + [28310] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27931] = 2, + ACTIONS(2954), 3, + anon_sym_DASH_GT, + anon_sym_COLON, + anon_sym_when, + [28320] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 3, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(2227), 3, + anon_sym_RPAREN, anon_sym_COMMA, - [27941] = 4, - ACTIONS(536), 1, - anon_sym_RBRACE, + anon_sym_SEMI, + [28330] = 4, + ACTIONS(2576), 1, + anon_sym_default, + ACTIONS(2956), 1, + anon_sym_SEMI, + STATE(1365), 1, + sym__default_value, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28344] = 4, + ACTIONS(2958), 1, + anon_sym_RPAREN, ACTIONS(2960), 1, anon_sym_COMMA, - STATE(1174), 1, - aux_sym_array_initializer_repeat1, + STATE(1115), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27955] = 4, + [28358] = 4, + ACTIONS(2213), 1, + anon_sym_COMMA, ACTIONS(2962), 1, - sym_identifier, - ACTIONS(2965), 1, - sym_this, - STATE(1074), 1, - aux_sym_receiver_parameter_repeat1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27969] = 4, - ACTIONS(1321), 1, + [28372] = 4, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(488), 1, + STATE(499), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27983] = 4, - ACTIONS(2208), 1, + [28386] = 4, + ACTIONS(2964), 1, + anon_sym_RBRACE, + ACTIONS(2966), 1, anon_sym_COMMA, - ACTIONS(2967), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1079), 1, + aux_sym_element_value_array_initializer_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28400] = 4, + ACTIONS(1806), 1, + anon_sym_LBRACK, + ACTIONS(1808), 1, + anon_sym_DOT, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27997] = 4, + [28414] = 4, ACTIONS(2969), 1, anon_sym_GT, ACTIONS(2971), 1, anon_sym_COMMA, - STATE(1082), 1, - aux_sym_type_parameters_repeat1, + STATE(1089), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28011] = 4, - ACTIONS(2973), 1, - anon_sym_RPAREN, - ACTIONS(2975), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_formal_parameters_repeat1, + [28428] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28025] = 4, - ACTIONS(2941), 1, + ACTIONS(2973), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2978), 1, + anon_sym_SEMI, + [28438] = 4, + ACTIONS(2975), 1, anon_sym_RPAREN, - STATE(1137), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2977), 1, + anon_sym_SEMI, + STATE(1071), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28039] = 4, - ACTIONS(2513), 1, - sym_identifier, - ACTIONS(2980), 1, - sym_this, - STATE(1074), 1, - aux_sym_receiver_parameter_repeat1, + [28452] = 4, + ACTIONS(2979), 1, + anon_sym_RPAREN, + ACTIONS(2981), 1, + anon_sym_COMMA, + STATE(1084), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28053] = 4, - ACTIONS(2982), 1, - sym_identifier, + [28466] = 4, + ACTIONS(2213), 1, + anon_sym_COMMA, ACTIONS(2984), 1, - anon_sym_STAR, - STATE(1346), 1, - sym_asterisk, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28067] = 4, - ACTIONS(2986), 1, - anon_sym_GT, - ACTIONS(2988), 1, - anon_sym_COMMA, - STATE(1082), 1, - aux_sym_type_parameters_repeat1, + [28480] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2986), 3, + anon_sym_LBRACE, + anon_sym_implements, + anon_sym_permits, + [28490] = 4, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2522), 1, + anon_sym_DOT, + STATE(494), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28081] = 4, - ACTIONS(2208), 1, + [28504] = 4, + ACTIONS(1359), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(2988), 1, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1111), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28095] = 4, - ACTIONS(2208), 1, + [28518] = 4, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(2993), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2990), 1, + anon_sym_GT, + STATE(1129), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28532] = 4, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(309), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28109] = 2, + [28546] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2995), 3, + ACTIONS(2994), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, - [28119] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2997), 1, + [28556] = 4, + ACTIONS(2996), 1, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2998), 1, + anon_sym_COMMA, + STATE(1095), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28133] = 4, - ACTIONS(2999), 1, - anon_sym_GT, - ACTIONS(3001), 1, + [28570] = 4, + ACTIONS(2185), 1, + anon_sym_COLON, + ACTIONS(2199), 1, + anon_sym_when, + STATE(1286), 1, + sym_guard, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28584] = 4, + ACTIONS(3000), 1, + anon_sym_RPAREN, + ACTIONS(3002), 1, anon_sym_COMMA, - STATE(1087), 1, - aux_sym_type_arguments_repeat1, + STATE(1155), 1, + aux_sym_record_pattern_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28147] = 4, + [28598] = 4, + ACTIONS(2998), 1, + anon_sym_COMMA, ACTIONS(3004), 1, - anon_sym_GT, + anon_sym_RPAREN, + STATE(1084), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28612] = 4, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2522), 1, + anon_sym_DOT, + STATE(488), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28626] = 4, ACTIONS(3006), 1, + anon_sym_RPAREN, + ACTIONS(3008), 1, + anon_sym_SEMI, + STATE(1097), 1, + aux_sym_resource_specification_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28640] = 4, + ACTIONS(3011), 1, + anon_sym_RPAREN, + ACTIONS(3013), 1, anon_sym_COMMA, - STATE(1087), 1, - aux_sym_type_arguments_repeat1, + STATE(1098), 1, + aux_sym_record_pattern_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28161] = 4, - ACTIONS(3008), 1, + [28654] = 4, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(370), 1, + sym_module_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28668] = 4, + ACTIONS(523), 1, anon_sym_RBRACE, - ACTIONS(3010), 1, + ACTIONS(3016), 1, anon_sym_COMMA, - STATE(1129), 1, + STATE(1079), 1, aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28175] = 4, - ACTIONS(2883), 1, + [28682] = 3, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3018), 2, anon_sym_COMMA, - ACTIONS(3012), 1, anon_sym_SEMI, - STATE(1118), 1, - aux_sym_exports_module_directive_repeat1, + [28694] = 4, + ACTIONS(3020), 1, + sym_identifier, + ACTIONS(3023), 1, + sym_this, + STATE(1102), 1, + aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28189] = 2, + [28708] = 4, + ACTIONS(3025), 1, + sym_identifier, + ACTIONS(3027), 1, + anon_sym_STAR, + STATE(1336), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 3, - anon_sym_DASH_GT, - anon_sym_COLON, - anon_sym_when, - [28199] = 2, + [28722] = 4, + ACTIONS(2317), 1, + anon_sym_RBRACE, + ACTIONS(3029), 1, + anon_sym_COMMA, + STATE(1104), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3016), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [28209] = 4, - ACTIONS(2883), 1, + [28736] = 4, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2522), 1, + anon_sym_DOT, + STATE(502), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28750] = 4, + ACTIONS(3032), 1, + anon_sym_RPAREN, + ACTIONS(3034), 1, anon_sym_COMMA, - ACTIONS(3018), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_exports_module_directive_repeat1, + STATE(1106), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28223] = 4, - ACTIONS(3020), 1, + [28764] = 4, + ACTIONS(2998), 1, + anon_sym_COMMA, + ACTIONS(3037), 1, anon_sym_RPAREN, - ACTIONS(3022), 1, + STATE(1108), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28778] = 4, + ACTIONS(2998), 1, anon_sym_COMMA, - STATE(1133), 1, + ACTIONS(3039), 1, + anon_sym_RPAREN, + STATE(1084), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28237] = 4, - ACTIONS(3006), 1, + [28792] = 4, + ACTIONS(2217), 1, anon_sym_COMMA, - ACTIONS(3024), 1, - anon_sym_GT, - STATE(1098), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3041), 1, + anon_sym_SEMI, + STATE(1110), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28251] = 4, - ACTIONS(2853), 1, + [28806] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3026), 1, + ACTIONS(3046), 1, anon_sym_SEMI, - STATE(1124), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1110), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28265] = 4, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, + [28820] = 4, + ACTIONS(3048), 1, + anon_sym_RPAREN, + ACTIONS(3050), 1, + anon_sym_COMMA, + STATE(1111), 1, + aux_sym_inferred_parameters_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28834] = 4, + ACTIONS(3053), 1, + anon_sym_COMMA, + ACTIONS(3056), 1, anon_sym_SEMI, - STATE(390), 1, - sym_block, + STATE(1112), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28279] = 4, - ACTIONS(3006), 1, + [28848] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(3030), 1, - anon_sym_GT, - STATE(1087), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3060), 1, + anon_sym_SEMI, + STATE(1179), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28293] = 4, - ACTIONS(3006), 1, + [28862] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3032), 1, - anon_sym_GT, - STATE(1088), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3062), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28307] = 4, - ACTIONS(2567), 1, - anon_sym_default, - ACTIONS(3034), 1, - anon_sym_SEMI, - STATE(1335), 1, - sym__default_value, + [28876] = 4, + ACTIONS(1639), 1, + anon_sym_RPAREN, + ACTIONS(2960), 1, + anon_sym_COMMA, + STATE(1106), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28321] = 4, - ACTIONS(3022), 1, + [28890] = 4, + ACTIONS(2960), 1, anon_sym_COMMA, - ACTIONS(3036), 1, + ACTIONS(3064), 1, anon_sym_RPAREN, - STATE(1103), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1106), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28335] = 4, - ACTIONS(2163), 1, - anon_sym_COLON, - ACTIONS(2182), 1, - anon_sym_when, - STATE(1273), 1, - sym_guard, + [28904] = 4, + ACTIONS(35), 1, + anon_sym_LBRACE, + ACTIONS(3066), 1, + anon_sym_SEMI, + STATE(394), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28349] = 4, - ACTIONS(3022), 1, - anon_sym_COMMA, - ACTIONS(3038), 1, - anon_sym_RPAREN, - STATE(1133), 1, - aux_sym_annotation_argument_list_repeat1, + [28918] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28363] = 4, - ACTIONS(1321), 1, + ACTIONS(2924), 3, + anon_sym_AMP, + anon_sym_GT, + anon_sym_COMMA, + [28928] = 4, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2522), 1, anon_sym_DOT, - STATE(497), 1, + STATE(498), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28377] = 4, - ACTIONS(2208), 1, + [28942] = 4, + ACTIONS(2960), 1, anon_sym_COMMA, - ACTIONS(3040), 1, + ACTIONS(3068), 1, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1116), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28391] = 4, - ACTIONS(1321), 1, + [28956] = 4, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(3070), 1, anon_sym_DOT, - STATE(485), 1, + STATE(1364), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28405] = 4, - ACTIONS(2228), 1, + [28970] = 4, + ACTIONS(537), 1, anon_sym_RBRACE, - ACTIONS(2230), 1, + ACTIONS(3072), 1, anon_sym_COMMA, - STATE(1073), 1, + STATE(1104), 1, aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28419] = 2, + [28984] = 4, + ACTIONS(2998), 1, + anon_sym_COMMA, + ACTIONS(3074), 1, + anon_sym_RPAREN, + STATE(1131), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 3, - anon_sym_LBRACE, - anon_sym_implements, - anon_sym_permits, - [28429] = 4, - ACTIONS(2941), 1, + [28998] = 4, + ACTIONS(3076), 1, + anon_sym_RBRACE, + ACTIONS(3078), 1, anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_RPAREN, - STATE(1066), 1, - aux_sym_formal_parameters_repeat1, + STATE(1100), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28443] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(3046), 1, + [29012] = 4, + ACTIONS(2858), 1, + anon_sym_AMP, + ACTIONS(3080), 1, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1153), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28457] = 2, + [29026] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3048), 3, - anon_sym_LBRACE, + ACTIONS(3082), 3, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_throws, - [28467] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2939), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_module_body, + [29036] = 4, + ACTIONS(2526), 1, + sym_identifier, + ACTIONS(3084), 1, + sym_this, + STATE(1102), 1, + aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28481] = 4, - ACTIONS(2208), 1, + [29050] = 4, + ACTIONS(3086), 1, + anon_sym_GT, + ACTIONS(3088), 1, anon_sym_COMMA, - ACTIONS(3050), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1175), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28495] = 4, - ACTIONS(3022), 1, + [29064] = 4, + ACTIONS(3090), 1, + anon_sym_GT, + ACTIONS(3092), 1, anon_sym_COMMA, - ACTIONS(3052), 1, - anon_sym_RPAREN, - STATE(1115), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1129), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [29078] = 4, + ACTIONS(2971), 1, + anon_sym_COMMA, + ACTIONS(3095), 1, + anon_sym_GT, + STATE(1129), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28509] = 4, - ACTIONS(3022), 1, + [29092] = 4, + ACTIONS(2998), 1, anon_sym_COMMA, - ACTIONS(3054), 1, + ACTIONS(3097), 1, anon_sym_RPAREN, - STATE(1133), 1, + STATE(1084), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28523] = 3, - ACTIONS(1640), 1, + [29106] = 3, + ACTIONS(1653), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 2, + ACTIONS(3099), 2, anon_sym_COMMA, anon_sym_SEMI, - [28535] = 4, - ACTIONS(3058), 1, - anon_sym_RBRACE, - ACTIONS(3060), 1, + [29118] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - STATE(1117), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(3101), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28549] = 4, - ACTIONS(3063), 1, + [29132] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(3066), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_exports_module_directive_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [28563] = 4, - ACTIONS(657), 1, - anon_sym_RPAREN, - ACTIONS(3068), 1, + ACTIONS(3103), 1, anon_sym_SEMI, - STATE(1173), 1, - aux_sym_resource_specification_repeat1, + STATE(1113), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28577] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, + [29146] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3070), 2, + ACTIONS(2892), 3, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, - [28589] = 4, - ACTIONS(2513), 1, - sym_identifier, - ACTIONS(2515), 1, - sym_this, - STATE(1074), 1, - aux_sym_receiver_parameter_repeat1, + [29156] = 4, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(3105), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28603] = 4, - ACTIONS(2971), 1, + [29170] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_GT, - STATE(1077), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3107), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28617] = 4, - ACTIONS(3074), 1, - anon_sym_RPAREN, - ACTIONS(3076), 1, + [29184] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - STATE(1123), 1, - aux_sym_record_pattern_body_repeat1, + ACTIONS(3109), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28631] = 4, - ACTIONS(3079), 1, + [29198] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3082), 1, - anon_sym_SEMI, - STATE(1124), 1, - aux_sym_provides_module_directive_repeat1, + ACTIONS(3111), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28645] = 4, - ACTIONS(3084), 1, + [29212] = 4, + ACTIONS(3113), 1, + anon_sym_RPAREN, + ACTIONS(3115), 1, anon_sym_COMMA, - ACTIONS(3087), 1, - anon_sym_SEMI, - STATE(1125), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28659] = 4, - ACTIONS(2180), 1, + [29226] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3089), 1, + ACTIONS(3118), 1, anon_sym_RPAREN, - STATE(986), 1, - aux_sym_argument_list_repeat1, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28673] = 4, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_DOT, + [29240] = 4, + ACTIONS(2213), 1, + anon_sym_COMMA, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28687] = 4, - ACTIONS(2194), 1, + [29254] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3091), 1, - anon_sym_SEMI, - STATE(1151), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3122), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28701] = 4, - ACTIONS(506), 1, - anon_sym_RBRACE, - ACTIONS(3093), 1, + [29268] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - STATE(1117), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(3124), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28715] = 4, - ACTIONS(2567), 1, - anon_sym_default, - ACTIONS(3095), 1, + [29282] = 4, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(3126), 1, anon_sym_SEMI, - STATE(1305), 1, - sym__default_value, + ACTIONS(3128), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28729] = 4, - ACTIONS(2867), 1, - anon_sym_AMP, - ACTIONS(3097), 1, - anon_sym_RPAREN, - STATE(1069), 1, - aux_sym_cast_expression_repeat1, + [29296] = 4, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(258), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28743] = 2, + [29310] = 4, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(3130), 1, + anon_sym_SEMI, + ACTIONS(3132), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3099), 3, - anon_sym_DASH_GT, - anon_sym_COLON, - anon_sym_when, - [28753] = 4, - ACTIONS(3101), 1, - anon_sym_RPAREN, - ACTIONS(3103), 1, + [29324] = 4, + ACTIONS(2229), 1, + anon_sym_RBRACE, + ACTIONS(2231), 1, anon_sym_COMMA, - STATE(1133), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [28767] = 2, + STATE(1122), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2200), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [28777] = 4, - ACTIONS(2935), 1, + [29338] = 4, + ACTIONS(3134), 1, + anon_sym_GT, + ACTIONS(3136), 1, anon_sym_COMMA, - ACTIONS(3106), 1, - anon_sym_SEMI, - STATE(1064), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(1149), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28791] = 4, - ACTIONS(2208), 1, + [29352] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3108), 1, + ACTIONS(3139), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28805] = 4, - ACTIONS(2941), 1, - anon_sym_COMMA, - ACTIONS(3110), 1, - anon_sym_RPAREN, - STATE(1078), 1, - aux_sym_formal_parameters_repeat1, + [29366] = 4, + ACTIONS(3025), 1, + sym_identifier, + ACTIONS(3027), 1, + anon_sym_STAR, + STATE(1370), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28819] = 4, - ACTIONS(3022), 1, + [29380] = 4, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(3112), 1, - anon_sym_RPAREN, - STATE(1094), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(3141), 1, + anon_sym_GT, + STATE(1130), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28833] = 4, - ACTIONS(3114), 1, + [29394] = 4, + ACTIONS(3143), 1, anon_sym_RPAREN, - ACTIONS(3116), 1, - anon_sym_SEMI, - STATE(1119), 1, - aux_sym_resource_specification_repeat1, + ACTIONS(3145), 1, + anon_sym_AMP, + STATE(1153), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28847] = 4, - ACTIONS(2208), 1, + [29408] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3118), 1, + ACTIONS(3148), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28861] = 2, + [29422] = 4, + ACTIONS(3002), 1, + anon_sym_COMMA, + ACTIONS(3150), 1, + anon_sym_RPAREN, + STATE(1098), 1, + aux_sym_record_pattern_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3120), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [28871] = 4, - ACTIONS(2208), 1, + [29436] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3122), 1, + ACTIONS(3152), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28885] = 4, - ACTIONS(2208), 1, + [29450] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3124), 1, + ACTIONS(3154), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28899] = 2, + [29464] = 4, + ACTIONS(2245), 1, + anon_sym_SEMI, + ACTIONS(2845), 1, + anon_sym_RBRACE, + STATE(1375), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 3, - anon_sym_RBRACE, + [29478] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - anon_sym_SEMI, - [28909] = 4, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(493), 1, - sym_argument_list, + ACTIONS(3156), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28923] = 4, - ACTIONS(2208), 1, + [29492] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3126), 1, + ACTIONS(3158), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28937] = 4, - ACTIONS(2208), 1, + [29506] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3128), 1, + ACTIONS(3160), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28951] = 4, - ACTIONS(2208), 1, + [29520] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3162), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28965] = 4, - ACTIONS(2208), 1, + [29534] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3132), 1, + ACTIONS(3164), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28979] = 2, + [29548] = 4, + ACTIONS(2903), 1, + anon_sym_COMMA, + ACTIONS(3166), 1, + anon_sym_SEMI, + STATE(1112), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3134), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [28989] = 4, - ACTIONS(3136), 1, + [29562] = 4, + ACTIONS(2903), 1, anon_sym_COMMA, - ACTIONS(3139), 1, + ACTIONS(3168), 1, anon_sym_SEMI, - STATE(1151), 1, - aux_sym_for_statement_repeat1, + STATE(1112), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29003] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(3141), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + [29576] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29017] = 4, - ACTIONS(1346), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, - anon_sym_RPAREN, - STATE(1068), 1, - aux_sym_inferred_parameters_repeat1, + ACTIONS(3170), 3, + anon_sym_DASH_GT, + anon_sym_COLON, + anon_sym_when, + [29586] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29031] = 4, - ACTIONS(3145), 1, - anon_sym_RPAREN, - ACTIONS(3147), 1, - anon_sym_COMMA, - STATE(1158), 1, - aux_sym_record_pattern_body_repeat1, + ACTIONS(3172), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [29596] = 4, + ACTIONS(2576), 1, + anon_sym_default, + ACTIONS(3174), 1, + anon_sym_SEMI, + STATE(1351), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29045] = 4, - ACTIONS(2208), 1, + [29610] = 4, + ACTIONS(2197), 1, anon_sym_COMMA, - ACTIONS(3149), 1, + ACTIONS(3176), 1, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1009), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29059] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(3151), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + [29624] = 4, + ACTIONS(35), 1, + anon_sym_LBRACE, + ACTIONS(3178), 1, + anon_sym_SEMI, + STATE(390), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29073] = 4, - ACTIONS(2208), 1, + [29638] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3153), 1, + ACTIONS(3180), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29087] = 4, - ACTIONS(3147), 1, - anon_sym_COMMA, - ACTIONS(3155), 1, - anon_sym_RPAREN, - STATE(1123), 1, - aux_sym_record_pattern_body_repeat1, + [29652] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29101] = 4, - ACTIONS(2208), 1, + ACTIONS(3182), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3157), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [29115] = 4, - ACTIONS(2208), 1, + anon_sym_SEMI, + [29662] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3159), 1, + ACTIONS(3184), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1140), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29129] = 4, - ACTIONS(2208), 1, + [29676] = 4, + ACTIONS(2217), 1, anon_sym_COMMA, - ACTIONS(3161), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + ACTIONS(3186), 1, + anon_sym_SEMI, + STATE(1110), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29143] = 4, - ACTIONS(2208), 1, + [29690] = 4, + ACTIONS(3088), 1, anon_sym_COMMA, - ACTIONS(3163), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + ACTIONS(3188), 1, + anon_sym_GT, + STATE(1149), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29157] = 2, + [29704] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3165), 3, - anon_sym_RBRACE, + ACTIONS(3190), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + [29714] = 4, + ACTIONS(2217), 1, anon_sym_COMMA, + ACTIONS(3192), 1, anon_sym_SEMI, - [29167] = 4, - ACTIONS(2982), 1, - sym_identifier, - ACTIONS(2984), 1, - anon_sym_STAR, - STATE(1334), 1, - sym_asterisk, + STATE(1110), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29181] = 4, - ACTIONS(2216), 1, + [29728] = 4, + ACTIONS(3194), 1, + anon_sym_COMMA, + ACTIONS(3197), 1, anon_sym_SEMI, - ACTIONS(2835), 1, - anon_sym_RBRACE, - STATE(1368), 1, - sym_enum_body_declarations, + STATE(1178), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29195] = 4, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(3167), 1, + [29742] = 4, + ACTIONS(3199), 1, + anon_sym_COMMA, + ACTIONS(3202), 1, anon_sym_SEMI, - STATE(394), 1, - sym_block, + STATE(1179), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29209] = 4, - ACTIONS(1640), 1, + [29756] = 4, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(2522), 1, anon_sym_DOT, - ACTIONS(2939), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_module_body, + STATE(493), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29223] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3169), 1, - anon_sym_SEMI, - ACTIONS(3171), 1, - anon_sym_to, + [29770] = 4, + ACTIONS(2858), 1, + anon_sym_AMP, + ACTIONS(3204), 1, + anon_sym_RPAREN, + STATE(1153), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29237] = 4, - ACTIONS(2194), 1, + [29784] = 4, + ACTIONS(2213), 1, anon_sym_COMMA, - ACTIONS(3173), 1, - anon_sym_SEMI, - STATE(1151), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3206), 1, + anon_sym_RPAREN, + STATE(1140), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29251] = 4, - ACTIONS(1321), 1, + [29798] = 3, + ACTIONS(662), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(495), 1, - sym_argument_list, + STATE(26), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29265] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3175), 1, - anon_sym_SEMI, - ACTIONS(3177), 1, - anon_sym_to, + [29809] = 3, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(299), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29279] = 4, - ACTIONS(2867), 1, - anon_sym_AMP, - ACTIONS(3179), 1, - anon_sym_RPAREN, - STATE(1069), 1, - aux_sym_cast_expression_repeat1, + [29820] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29293] = 4, - ACTIONS(3181), 1, + ACTIONS(3208), 2, anon_sym_RPAREN, - ACTIONS(3183), 1, - anon_sym_SEMI, - STATE(1173), 1, - aux_sym_resource_specification_repeat1, + anon_sym_AMP, + [29829] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29307] = 4, - ACTIONS(2305), 1, - anon_sym_RBRACE, - ACTIONS(3186), 1, - anon_sym_COMMA, - STATE(1174), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(3210), 2, + anon_sym_new, + sym_identifier, + [29838] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29321] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(3189), 1, + ACTIONS(3212), 2, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + anon_sym_COMMA, + [29847] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29335] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_class_body, + ACTIONS(3006), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [29856] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29346] = 2, + ACTIONS(3214), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [29865] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3191), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [29355] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_class_body, + ACTIONS(3216), 2, + anon_sym_GT, + anon_sym_COMMA, + [29874] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29366] = 3, - ACTIONS(2678), 1, + ACTIONS(3218), 2, anon_sym_LBRACE, - STATE(359), 1, - sym_interface_body, + anon_sym_throws, + [29883] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29377] = 3, - ACTIONS(1646), 1, + ACTIONS(2317), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [29892] = 3, + ACTIONS(2913), 1, anon_sym_LBRACE, - STATE(377), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [29388] = 2, + STATE(304), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3193), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [29397] = 3, - ACTIONS(651), 1, + [29903] = 3, + ACTIONS(1334), 1, anon_sym_LPAREN, - STATE(1344), 1, - sym_parenthesized_expression, + STATE(488), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29408] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(497), 1, - sym_argument_list, + [29914] = 3, + ACTIONS(35), 1, + anon_sym_LBRACE, + STATE(317), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29419] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(266), 1, - sym_class_body, + [29925] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29430] = 3, - ACTIONS(651), 1, + ACTIONS(3220), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [29934] = 3, + ACTIONS(662), 1, anon_sym_LPAREN, - STATE(1212), 1, + STATE(46), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29441] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(349), 1, - sym_class_body, + [29945] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29452] = 3, - ACTIONS(2869), 1, + ACTIONS(3011), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [29954] = 3, + ACTIONS(2874), 1, anon_sym_LBRACE, - STATE(366), 1, - sym_enum_body, + STATE(160), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29463] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(488), 1, - sym_argument_list, + [29965] = 3, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(3222), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29474] = 3, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(159), 1, - sym_block, + [29976] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29485] = 3, - ACTIONS(512), 1, + ACTIONS(3224), 2, anon_sym_LBRACE, - STATE(517), 1, - sym_array_initializer, + anon_sym_permits, + [29985] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29496] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(387), 1, - sym_interface_body, + ACTIONS(3226), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [29994] = 3, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(3228), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29507] = 3, - ACTIONS(512), 1, + [30005] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(520), 1, - sym_array_initializer, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [29518] = 2, + STATE(358), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3195), 2, - anon_sym_LBRACE, + [30016] = 3, + ACTIONS(3230), 1, + anon_sym_DOT, + ACTIONS(3232), 1, anon_sym_SEMI, - [29527] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(485), 1, - sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29538] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(1349), 1, - sym_argument_list, + [30027] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29549] = 2, + ACTIONS(3234), 2, + anon_sym_LBRACE, + anon_sym_permits, + [30036] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3197), 2, + ACTIONS(3048), 2, anon_sym_RPAREN, anon_sym_COMMA, - [29558] = 2, + [30045] = 3, + ACTIONS(3236), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3199), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29567] = 3, - ACTIONS(1321), 1, + [30056] = 3, + ACTIONS(2504), 1, anon_sym_LPAREN, - STATE(493), 1, - sym_argument_list, + STATE(1049), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29578] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_class_body, + [30067] = 3, + ACTIONS(3238), 1, + sym_identifier, + ACTIONS(3240), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29589] = 3, - ACTIONS(3044), 1, - anon_sym_RPAREN, - ACTIONS(3201), 1, - anon_sym_COMMA, + [30078] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(328), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29600] = 2, + [30089] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3203), 2, + ACTIONS(3032), 2, anon_sym_RPAREN, anon_sym_COMMA, - [29609] = 2, + [30098] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(278), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3205), 2, - anon_sym_new, + [30109] = 3, + ACTIONS(3242), 1, sym_identifier, - [29618] = 2, + ACTIONS(3244), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3207), 2, - anon_sym_LBRACE, - anon_sym_permits, - [29627] = 3, - ACTIONS(2678), 1, + [30120] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3246), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [30129] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(261), 1, - sym_interface_body, + STATE(330), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29638] = 3, - ACTIONS(1514), 1, - anon_sym_LPAREN, - STATE(607), 1, - sym_record_pattern_body, + [30140] = 3, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(2936), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29649] = 3, - ACTIONS(512), 1, + [30151] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(563), 1, - sym_array_initializer, + STATE(331), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29660] = 3, - ACTIONS(1646), 1, + [30162] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(281), 1, + STATE(348), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29671] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3209), 1, - anon_sym_SEMI, + [30173] = 3, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(267), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29682] = 2, + [30184] = 3, + ACTIONS(1529), 1, + anon_sym_LPAREN, + STATE(590), 1, + sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [29691] = 3, - ACTIONS(1646), 1, + [30195] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(296), 1, + STATE(280), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29702] = 2, + [30206] = 3, + ACTIONS(662), 1, + anon_sym_LPAREN, + STATE(1331), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29711] = 3, - ACTIONS(3211), 1, + [30217] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(111), 1, - sym_switch_block, + STATE(333), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29722] = 2, + [30228] = 3, + ACTIONS(35), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29731] = 3, - ACTIONS(3215), 1, - anon_sym_DOT, - ACTIONS(3217), 1, - anon_sym_SEMI, + [30239] = 3, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(334), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29742] = 3, - ACTIONS(2489), 1, + [30250] = 3, + ACTIONS(2504), 1, anon_sym_LPAREN, - STATE(1062), 1, + STATE(1065), 1, sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29753] = 3, - ACTIONS(651), 1, - anon_sym_LPAREN, - STATE(22), 1, - sym_parenthesized_expression, + [30261] = 3, + ACTIONS(521), 1, + anon_sym_LBRACE, + STATE(578), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29764] = 3, - ACTIONS(3219), 1, - anon_sym_LBRACE, - STATE(344), 1, - sym_annotation_type_body, + [30272] = 3, + ACTIONS(3248), 1, + anon_sym_DOT, + ACTIONS(3250), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29775] = 2, + [30283] = 3, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(336), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3221), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [29784] = 3, - ACTIONS(3223), 1, - anon_sym_DASH_GT, - ACTIONS(3225), 1, - anon_sym_COLON, + [30294] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29795] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(3252), 2, + anon_sym_LBRACE, anon_sym_SEMI, + [30303] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(281), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29806] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(489), 1, - sym_argument_list, + [30314] = 3, + ACTIONS(2864), 1, + anon_sym_LBRACE, + STATE(574), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29817] = 2, + [30325] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2943), 2, + ACTIONS(3254), 2, anon_sym_RPAREN, anon_sym_COMMA, - [29826] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3229), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [29835] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3231), 1, - anon_sym_SEMI, + [30334] = 3, + ACTIONS(662), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29846] = 2, + [30345] = 3, + ACTIONS(662), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3233), 2, - anon_sym_LBRACE, - anon_sym_throws, - [29855] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(303), 1, - sym_class_body, + [30356] = 3, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(493), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29866] = 2, + [30367] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 2, - anon_sym_GT, + ACTIONS(3256), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [29875] = 3, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(2925), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [29886] = 3, - ACTIONS(3235), 1, - sym_identifier, - ACTIONS(3237), 1, - anon_sym_SEMI, + [30376] = 3, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(498), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29897] = 3, - ACTIONS(3239), 1, + [30387] = 3, + ACTIONS(1653), 1, anon_sym_DOT, - ACTIONS(3241), 1, + ACTIONS(3258), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29908] = 3, - ACTIONS(651), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym_parenthesized_expression, + [30398] = 3, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(307), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29919] = 3, - ACTIONS(651), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_parenthesized_expression, + [30409] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29930] = 3, - ACTIONS(2859), 1, - anon_sym_LBRACE, - STATE(546), 1, - sym_constructor_body, + ACTIONS(3260), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [30418] = 3, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(3262), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29941] = 2, + [30429] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3243), 2, + ACTIONS(3264), 2, anon_sym_GT, anon_sym_COMMA, - [29950] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3245), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29959] = 2, + [30438] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3101), 2, - anon_sym_RPAREN, + ACTIONS(3090), 2, + anon_sym_GT, anon_sym_COMMA, - [29968] = 2, + [30447] = 3, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(349), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3247), 2, - anon_sym_LBRACE, - anon_sym_throws, - [29977] = 2, + [30458] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3249), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [29986] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_interface_body, + ACTIONS(2979), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [30467] = 3, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(1362), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29997] = 3, - ACTIONS(2913), 1, + [30478] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(252), 1, - sym_block, + STATE(312), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30008] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3251), 1, - anon_sym_SEMI, + [30489] = 3, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(525), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30019] = 3, - ACTIONS(1640), 1, + [30500] = 3, + ACTIONS(1653), 1, anon_sym_DOT, - ACTIONS(3253), 1, + ACTIONS(3266), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30030] = 3, - ACTIONS(1640), 1, + [30511] = 3, + ACTIONS(1653), 1, anon_sym_DOT, - ACTIONS(3255), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [30041] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(269), 1, - sym_class_body, + ACTIONS(3268), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30052] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3257), 1, - anon_sym_with, + [30522] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30063] = 3, - ACTIONS(512), 1, + ACTIONS(3270), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [30531] = 3, + ACTIONS(3236), 1, anon_sym_LBRACE, - STATE(566), 1, - sym_array_initializer, + STATE(272), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30074] = 2, + [30542] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 2, + ACTIONS(3272), 2, anon_sym_GT, anon_sym_COMMA, - [30083] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(270), 1, - sym_interface_body, + [30551] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30094] = 3, - ACTIONS(3219), 1, - anon_sym_LBRACE, - STATE(380), 1, - sym_annotation_type_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [30105] = 2, + ACTIONS(3274), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [30560] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3259), 2, + ACTIONS(3276), 2, anon_sym_LBRACE, - anon_sym_permits, - [30114] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3261), 2, - sym_this, - sym_super, - [30123] = 2, + anon_sym_SEMI, + [30569] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2999), 2, + ACTIONS(3134), 2, anon_sym_GT, anon_sym_COMMA, - [30132] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(1370), 1, - sym_argument_list, + [30578] = 3, + ACTIONS(2864), 1, + anon_sym_LBRACE, + STATE(521), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30143] = 3, - ACTIONS(2859), 1, + [30589] = 3, + ACTIONS(2913), 1, anon_sym_LBRACE, - STATE(538), 1, - sym_constructor_body, + STATE(262), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30154] = 2, + [30600] = 3, + ACTIONS(521), 1, + anon_sym_LBRACE, + STATE(537), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 2, - anon_sym_RPAREN, - anon_sym_AMP, - [30163] = 2, + [30611] = 3, + ACTIONS(3278), 1, + anon_sym_DASH_GT, + ACTIONS(3280), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 2, - anon_sym_GT, - anon_sym_COMMA, - [30172] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_class_body, + [30622] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30183] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(260), 1, - sym_class_body, + ACTIONS(3282), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [30631] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30194] = 3, - ACTIONS(1646), 1, + ACTIONS(3284), 2, anon_sym_LBRACE, - STATE(354), 1, - sym_class_body, + anon_sym_throws, + [30640] = 3, + ACTIONS(662), 1, + anon_sym_LPAREN, + STATE(1293), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30205] = 3, - ACTIONS(651), 1, + [30651] = 3, + ACTIONS(662), 1, anon_sym_LPAREN, - STATE(77), 1, + STATE(75), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30216] = 3, - ACTIONS(651), 1, + [30662] = 3, + ACTIONS(662), 1, anon_sym_LPAREN, - STATE(78), 1, + STATE(76), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30227] = 3, - ACTIONS(1195), 1, + [30673] = 3, + ACTIONS(1208), 1, anon_sym_while, - ACTIONS(3267), 1, + ACTIONS(3286), 1, anon_sym_else, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30238] = 3, - ACTIONS(3269), 1, - sym_identifier, - ACTIONS(3271), 1, - anon_sym_SEMI, + [30684] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30249] = 2, + [30695] = 3, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(559), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [30258] = 3, - ACTIONS(651), 1, - anon_sym_LPAREN, - STATE(21), 1, - sym_parenthesized_expression, + [30706] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30269] = 3, - ACTIONS(2678), 1, + ACTIONS(3288), 2, anon_sym_LBRACE, - STATE(361), 1, - sym_interface_body, + anon_sym_SEMI, + [30715] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(324), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30280] = 2, + [30726] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(385), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 2, - anon_sym_GT, - anon_sym_COMMA, - [30289] = 3, - ACTIONS(2869), 1, - anon_sym_LBRACE, - STATE(335), 1, - sym_enum_body, + [30737] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30300] = 3, - ACTIONS(3277), 1, - sym_identifier, - STATE(1236), 1, - sym_element_value_pair, + ACTIONS(3290), 2, + sym_this, + sym_super, + [30746] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30311] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(550), 1, - sym_argument_list, + ACTIONS(3292), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [30755] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30322] = 3, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(3279), 1, - anon_sym_DOT, + ACTIONS(3294), 2, + anon_sym_GT, + anon_sym_COMMA, + [30764] = 3, + ACTIONS(521), 1, + anon_sym_LBRACE, + STATE(540), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30333] = 3, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(884), 1, - sym_formal_parameters, + [30775] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30344] = 2, + ACTIONS(3296), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [30784] = 3, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(499), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [30353] = 3, - ACTIONS(1646), 1, + [30795] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(267), 1, + STATE(337), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30364] = 3, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(1060), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [30375] = 3, - ACTIONS(1646), 1, + [30806] = 3, + ACTIONS(2699), 1, anon_sym_LBRACE, - STATE(365), 1, - sym_class_body, + STATE(325), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30386] = 2, + [30817] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 2, + ACTIONS(3298), 2, anon_sym_RPAREN, anon_sym_COMMA, - [30395] = 3, - ACTIONS(35), 1, + [30826] = 3, + ACTIONS(2699), 1, anon_sym_LBRACE, - STATE(333), 1, - sym_block, + STATE(297), 1, + sym_interface_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [30837] = 3, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(3300), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30406] = 3, - ACTIONS(1646), 1, + [30848] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(287), 1, + STATE(345), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30417] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(528), 1, - sym_argument_list, + [30859] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30428] = 3, - ACTIONS(1646), 1, + ACTIONS(2802), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [30868] = 3, + ACTIONS(521), 1, anon_sym_LBRACE, - STATE(288), 1, - sym_class_body, + STATE(546), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30439] = 3, - ACTIONS(35), 1, + [30879] = 3, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(3302), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [30890] = 3, + ACTIONS(2874), 1, anon_sym_LBRACE, - STATE(355), 1, + STATE(250), 1, sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30450] = 3, - ACTIONS(1646), 1, + [30901] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(289), 1, + STATE(346), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30461] = 3, - ACTIONS(1321), 1, + [30912] = 3, + ACTIONS(1334), 1, anon_sym_LPAREN, - STATE(495), 1, + STATE(1327), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30472] = 2, + [30923] = 3, + ACTIONS(1653), 1, + anon_sym_DOT, + ACTIONS(3304), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [30481] = 3, - ACTIONS(1646), 1, + [30934] = 3, + ACTIONS(3306), 1, anon_sym_LBRACE, - STATE(290), 1, - sym_class_body, + STATE(111), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30492] = 2, + [30945] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 2, + ACTIONS(2839), 2, anon_sym_GT, anon_sym_COMMA, - [30501] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3287), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [30510] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(291), 1, - sym_interface_body, + [30954] = 3, + ACTIONS(2504), 1, + anon_sym_LPAREN, + STATE(887), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30521] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(272), 1, - sym_interface_body, + [30965] = 3, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(494), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30532] = 2, + [30976] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3181), 2, + ACTIONS(2964), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [30985] = 3, + ACTIONS(2958), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [30541] = 2, + ACTIONS(3308), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3074), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [30550] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, + [30996] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(303), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30561] = 3, - ACTIONS(1646), 1, + [31007] = 3, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(264), 1, + STATE(347), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30572] = 2, + [31018] = 3, + ACTIONS(1334), 1, + anon_sym_LPAREN, + STATE(502), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [31029] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 2, + ACTIONS(3023), 2, sym_this, sym_identifier, - [30581] = 2, + [31038] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(294), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [30590] = 2, + [31049] = 3, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(313), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [30599] = 2, - ACTIONS(3293), 1, - anon_sym_LPAREN, + [31060] = 2, + ACTIONS(3310), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30607] = 2, - ACTIONS(3008), 1, + [31068] = 2, + ACTIONS(3312), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30615] = 2, - ACTIONS(3112), 1, - anon_sym_RPAREN, + [31076] = 2, + ACTIONS(3314), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30623] = 2, - ACTIONS(2228), 1, - anon_sym_RBRACE, + [31084] = 2, + ACTIONS(3316), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30631] = 2, - ACTIONS(3295), 1, + [31092] = 2, + ACTIONS(3318), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30639] = 2, - ACTIONS(3297), 1, - anon_sym_class, + [31100] = 2, + ACTIONS(3320), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30647] = 2, - ACTIONS(3299), 1, + [31108] = 2, + ACTIONS(3322), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30655] = 2, - ACTIONS(3301), 1, - anon_sym_SEMI, + [31116] = 2, + ACTIONS(3324), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30663] = 2, - ACTIONS(3303), 1, + [31124] = 2, + ACTIONS(3326), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30671] = 2, - ACTIONS(3305), 1, - anon_sym_SEMI, + [31132] = 2, + ACTIONS(3076), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30679] = 2, - ACTIONS(3307), 1, - ts_builtin_sym_end, + [31140] = 2, + ACTIONS(3328), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30687] = 2, - ACTIONS(3309), 1, + [31148] = 2, + ACTIONS(2229), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30695] = 2, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, + [31156] = 2, + ACTIONS(3330), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30703] = 2, - ACTIONS(3311), 1, - anon_sym_module, + [31164] = 2, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30711] = 2, - ACTIONS(2571), 1, - anon_sym_DOT, + [31172] = 2, + ACTIONS(3332), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30719] = 2, - ACTIONS(3313), 1, - anon_sym_DASH_GT, + [31180] = 2, + ACTIONS(583), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30727] = 2, - ACTIONS(2958), 1, - anon_sym_DOT, + [31188] = 2, + ACTIONS(603), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30735] = 2, - ACTIONS(3052), 1, - anon_sym_RPAREN, + [31196] = 2, + ACTIONS(3334), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30743] = 2, - ACTIONS(3315), 1, - anon_sym_SEMI, + [31204] = 2, + ACTIONS(3070), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30751] = 2, - ACTIONS(3317), 1, - anon_sym_SEMI, + [31212] = 2, + ACTIONS(3336), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30759] = 2, - ACTIONS(3319), 1, - sym_identifier, + [31220] = 2, + ACTIONS(2327), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30767] = 2, - ACTIONS(3321), 1, - anon_sym_RPAREN, + [31228] = 2, + ACTIONS(3338), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30775] = 2, - ACTIONS(3323), 1, + [31236] = 2, + ACTIONS(3340), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30783] = 2, - ACTIONS(3325), 1, + [31244] = 2, + ACTIONS(3342), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30791] = 2, - ACTIONS(3225), 1, - anon_sym_COLON, + [31252] = 2, + ACTIONS(3344), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30799] = 2, - ACTIONS(3327), 1, - sym_identifier, + [31260] = 2, + ACTIONS(3346), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30807] = 2, - ACTIONS(3329), 1, - anon_sym_EQ, + [31268] = 2, + ACTIONS(3348), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30815] = 2, - ACTIONS(582), 1, - anon_sym_RBRACK, + [31276] = 2, + ACTIONS(3350), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30823] = 2, - ACTIONS(3331), 1, - anon_sym_SEMI, + [31284] = 2, + ACTIONS(3037), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30831] = 2, - ACTIONS(3333), 1, - anon_sym_DASH_GT, + [31292] = 2, + ACTIONS(3352), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30839] = 2, - ACTIONS(3223), 1, - anon_sym_DASH_GT, + [31300] = 2, + ACTIONS(3354), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30847] = 2, - ACTIONS(3335), 1, + [31308] = 2, + ACTIONS(3356), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30855] = 2, - ACTIONS(3337), 1, + [31316] = 2, + ACTIONS(3358), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30863] = 2, - ACTIONS(3339), 1, - sym_identifier, + [31324] = 2, + ACTIONS(3360), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30871] = 2, - ACTIONS(3341), 1, - sym_identifier, + [31332] = 2, + ACTIONS(2996), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30879] = 2, - ACTIONS(2982), 1, - sym_identifier, + [31340] = 2, + ACTIONS(3362), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30887] = 2, - ACTIONS(3343), 1, + [31348] = 2, + ACTIONS(3364), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30895] = 2, - ACTIONS(3345), 1, - anon_sym_SEMI, + [31356] = 2, + ACTIONS(3366), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30903] = 2, - ACTIONS(564), 1, - anon_sym_RBRACK, + [31364] = 2, + ACTIONS(3368), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30911] = 2, - ACTIONS(3347), 1, - sym_identifier, + [31372] = 2, + ACTIONS(3370), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30919] = 2, - ACTIONS(3349), 1, - sym_identifier, + [31380] = 2, + ACTIONS(3372), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30927] = 2, - ACTIONS(3351), 1, - anon_sym_while, + [31388] = 2, + ACTIONS(3374), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30935] = 2, - ACTIONS(3353), 1, - anon_sym_LBRACE, + [31396] = 2, + ACTIONS(3376), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30943] = 2, - ACTIONS(3355), 1, - anon_sym_LBRACE, + [31404] = 2, + ACTIONS(3378), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30951] = 2, - ACTIONS(3357), 1, - anon_sym_LPAREN, + [31412] = 2, + ACTIONS(3074), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30959] = 2, - ACTIONS(3036), 1, - anon_sym_RPAREN, + [31420] = 2, + ACTIONS(3380), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30967] = 2, - ACTIONS(3359), 1, + [31428] = 2, + ACTIONS(3382), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30975] = 2, - ACTIONS(3361), 1, - anon_sym_SEMI, + [31436] = 2, + ACTIONS(3384), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30983] = 2, - ACTIONS(3363), 1, - anon_sym_SEMI, + [31444] = 2, + ACTIONS(2845), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30991] = 2, - ACTIONS(3365), 1, - anon_sym_RPAREN, + [31452] = 2, + ACTIONS(555), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30999] = 2, - ACTIONS(1332), 1, - anon_sym_DASH_GT, + [31460] = 2, + ACTIONS(3386), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31007] = 2, - ACTIONS(3367), 1, - anon_sym_SEMI, + [31468] = 2, + ACTIONS(3388), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31015] = 2, - ACTIONS(3369), 1, - sym_identifier, + [31476] = 2, + ACTIONS(3390), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31023] = 2, - ACTIONS(3371), 1, - anon_sym_SEMI, + [31484] = 2, + ACTIONS(3392), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31031] = 2, - ACTIONS(3373), 1, - anon_sym_LBRACE, + [31492] = 2, + ACTIONS(3394), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31039] = 2, - ACTIONS(562), 1, - anon_sym_RBRACK, + [31500] = 2, + ACTIONS(2597), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31047] = 2, - ACTIONS(3375), 1, - anon_sym_SEMI, + [31508] = 2, + ACTIONS(3396), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31055] = 2, - ACTIONS(2835), 1, - anon_sym_RBRACE, + [31516] = 2, + ACTIONS(3398), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31063] = 2, - ACTIONS(3377), 1, - anon_sym_RPAREN, + [31524] = 2, + ACTIONS(1345), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31071] = 2, - ACTIONS(3379), 1, - anon_sym_LBRACE, + [31532] = 2, + ACTIONS(3400), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31079] = 2, - ACTIONS(3381), 1, - sym_identifier, + [31540] = 2, + ACTIONS(3402), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31087] = 2, - ACTIONS(3383), 1, - sym_identifier, + [31548] = 2, + ACTIONS(3404), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31095] = 2, - ACTIONS(3385), 1, - anon_sym_DOT, + [31556] = 2, + ACTIONS(651), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31103] = 2, - ACTIONS(3387), 1, - anon_sym_DASH_GT, + [31564] = 2, + ACTIONS(3406), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31111] = 2, - ACTIONS(3389), 1, - anon_sym_LPAREN, + [31572] = 2, + ACTIONS(3408), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31119] = 2, - ACTIONS(560), 1, - anon_sym_RBRACK, + [31580] = 2, + ACTIONS(3410), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31127] = 2, - ACTIONS(3391), 1, - anon_sym_SEMI, + [31588] = 2, + ACTIONS(3412), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31135] = 2, - ACTIONS(3393), 1, + [31596] = 2, + ACTIONS(3414), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31143] = 2, - ACTIONS(3395), 1, - anon_sym_EQ, + [31604] = 2, + ACTIONS(3280), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31151] = 2, - ACTIONS(3397), 1, - anon_sym_SEMI, + [31612] = 2, + ACTIONS(3416), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31159] = 2, - ACTIONS(2317), 1, + [31620] = 2, + ACTIONS(2315), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31167] = 2, - ACTIONS(3399), 1, + [31628] = 2, + ACTIONS(3418), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31175] = 2, - ACTIONS(3401), 1, - anon_sym_SEMI, + [31636] = 2, + ACTIONS(3420), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31183] = 2, - ACTIONS(3403), 1, - anon_sym_EQ, + [31644] = 2, + ACTIONS(3422), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31191] = 2, - ACTIONS(3405), 1, - anon_sym_RPAREN, + [31652] = 2, + ACTIONS(3424), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31199] = 2, - ACTIONS(3407), 1, - anon_sym_SEMI, + [31660] = 2, + ACTIONS(3278), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31207] = 2, - ACTIONS(3409), 1, + [31668] = 2, + ACTIONS(3426), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31215] = 2, - ACTIONS(2293), 1, - anon_sym_RBRACE, + [31676] = 2, + ACTIONS(3025), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31223] = 2, - ACTIONS(3411), 1, - anon_sym_RPAREN, + [31684] = 2, + ACTIONS(3428), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31231] = 2, - ACTIONS(3413), 1, - anon_sym_SEMI, + [31692] = 2, + ACTIONS(3430), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(405)] = 0, - [SMALL_STATE(406)] = 70, - [SMALL_STATE(407)] = 189, - [SMALL_STATE(408)] = 308, - [SMALL_STATE(409)] = 427, - [SMALL_STATE(410)] = 546, - [SMALL_STATE(411)] = 665, - [SMALL_STATE(412)] = 754, - [SMALL_STATE(413)] = 847, - [SMALL_STATE(414)] = 942, - [SMALL_STATE(415)] = 1049, - [SMALL_STATE(416)] = 1136, - [SMALL_STATE(417)] = 1243, - [SMALL_STATE(418)] = 1330, - [SMALL_STATE(419)] = 1437, - [SMALL_STATE(420)] = 1523, - [SMALL_STATE(421)] = 1609, - [SMALL_STATE(422)] = 1695, - [SMALL_STATE(423)] = 1781, - [SMALL_STATE(424)] = 1846, - [SMALL_STATE(425)] = 1940, - [SMALL_STATE(426)] = 2034, - [SMALL_STATE(427)] = 2128, - [SMALL_STATE(428)] = 2195, - [SMALL_STATE(429)] = 2256, - [SMALL_STATE(430)] = 2317, - [SMALL_STATE(431)] = 2381, - [SMALL_STATE(432)] = 2445, - [SMALL_STATE(433)] = 2500, - [SMALL_STATE(434)] = 2565, - [SMALL_STATE(435)] = 2640, - [SMALL_STATE(436)] = 2705, - [SMALL_STATE(437)] = 2760, - [SMALL_STATE(438)] = 2815, - [SMALL_STATE(439)] = 2881, - [SMALL_STATE(440)] = 2939, - [SMALL_STATE(441)] = 3005, - [SMALL_STATE(442)] = 3074, - [SMALL_STATE(443)] = 3137, - [SMALL_STATE(444)] = 3200, - [SMALL_STATE(445)] = 3273, - [SMALL_STATE(446)] = 3338, - [SMALL_STATE(447)] = 3402, - [SMALL_STATE(448)] = 3460, - [SMALL_STATE(449)] = 3524, - [SMALL_STATE(450)] = 3588, - [SMALL_STATE(451)] = 3652, - [SMALL_STATE(452)] = 3703, - [SMALL_STATE(453)] = 3760, - [SMALL_STATE(454)] = 3811, - [SMALL_STATE(455)] = 3864, - [SMALL_STATE(456)] = 3919, - [SMALL_STATE(457)] = 3970, - [SMALL_STATE(458)] = 4021, - [SMALL_STATE(459)] = 4072, - [SMALL_STATE(460)] = 4123, - [SMALL_STATE(461)] = 4174, - [SMALL_STATE(462)] = 4231, - [SMALL_STATE(463)] = 4284, - [SMALL_STATE(464)] = 4334, - [SMALL_STATE(465)] = 4392, - [SMALL_STATE(466)] = 4442, - [SMALL_STATE(467)] = 4492, - [SMALL_STATE(468)] = 4542, - [SMALL_STATE(469)] = 4592, - [SMALL_STATE(470)] = 4644, - [SMALL_STATE(471)] = 4694, - [SMALL_STATE(472)] = 4776, - [SMALL_STATE(473)] = 4826, - [SMALL_STATE(474)] = 4875, - [SMALL_STATE(475)] = 4924, - [SMALL_STATE(476)] = 4973, - [SMALL_STATE(477)] = 5022, - [SMALL_STATE(478)] = 5076, - [SMALL_STATE(479)] = 5150, - [SMALL_STATE(480)] = 5204, - [SMALL_STATE(481)] = 5251, - [SMALL_STATE(482)] = 5322, - [SMALL_STATE(483)] = 5395, - [SMALL_STATE(484)] = 5458, - [SMALL_STATE(485)] = 5510, - [SMALL_STATE(486)] = 5559, - [SMALL_STATE(487)] = 5608, - [SMALL_STATE(488)] = 5657, - [SMALL_STATE(489)] = 5706, - [SMALL_STATE(490)] = 5755, - [SMALL_STATE(491)] = 5804, - [SMALL_STATE(492)] = 5853, - [SMALL_STATE(493)] = 5902, - [SMALL_STATE(494)] = 5951, - [SMALL_STATE(495)] = 6000, - [SMALL_STATE(496)] = 6049, - [SMALL_STATE(497)] = 6098, - [SMALL_STATE(498)] = 6147, - [SMALL_STATE(499)] = 6198, - [SMALL_STATE(500)] = 6247, - [SMALL_STATE(501)] = 6291, + [SMALL_STATE(406)] = 0, + [SMALL_STATE(407)] = 70, + [SMALL_STATE(408)] = 140, + [SMALL_STATE(409)] = 259, + [SMALL_STATE(410)] = 378, + [SMALL_STATE(411)] = 497, + [SMALL_STATE(412)] = 616, + [SMALL_STATE(413)] = 735, + [SMALL_STATE(414)] = 824, + [SMALL_STATE(415)] = 917, + [SMALL_STATE(416)] = 1012, + [SMALL_STATE(417)] = 1119, + [SMALL_STATE(418)] = 1206, + [SMALL_STATE(419)] = 1313, + [SMALL_STATE(420)] = 1400, + [SMALL_STATE(421)] = 1507, + [SMALL_STATE(422)] = 1593, + [SMALL_STATE(423)] = 1679, + [SMALL_STATE(424)] = 1765, + [SMALL_STATE(425)] = 1851, + [SMALL_STATE(426)] = 1918, + [SMALL_STATE(427)] = 2012, + [SMALL_STATE(428)] = 2106, + [SMALL_STATE(429)] = 2200, + [SMALL_STATE(430)] = 2261, + [SMALL_STATE(431)] = 2322, + [SMALL_STATE(432)] = 2389, + [SMALL_STATE(433)] = 2453, + [SMALL_STATE(434)] = 2517, + [SMALL_STATE(435)] = 2572, + [SMALL_STATE(436)] = 2627, + [SMALL_STATE(437)] = 2692, + [SMALL_STATE(438)] = 2757, + [SMALL_STATE(439)] = 2832, + [SMALL_STATE(440)] = 2887, + [SMALL_STATE(441)] = 2953, + [SMALL_STATE(442)] = 3011, + [SMALL_STATE(443)] = 3077, + [SMALL_STATE(444)] = 3150, + [SMALL_STATE(445)] = 3219, + [SMALL_STATE(446)] = 3284, + [SMALL_STATE(447)] = 3347, + [SMALL_STATE(448)] = 3410, + [SMALL_STATE(449)] = 3474, + [SMALL_STATE(450)] = 3532, + [SMALL_STATE(451)] = 3596, + [SMALL_STATE(452)] = 3660, + [SMALL_STATE(453)] = 3724, + [SMALL_STATE(454)] = 3775, + [SMALL_STATE(455)] = 3830, + [SMALL_STATE(456)] = 3881, + [SMALL_STATE(457)] = 3932, + [SMALL_STATE(458)] = 3983, + [SMALL_STATE(459)] = 4034, + [SMALL_STATE(460)] = 4091, + [SMALL_STATE(461)] = 4142, + [SMALL_STATE(462)] = 4193, + [SMALL_STATE(463)] = 4254, + [SMALL_STATE(464)] = 4307, + [SMALL_STATE(465)] = 4360, + [SMALL_STATE(466)] = 4417, + [SMALL_STATE(467)] = 4469, + [SMALL_STATE(468)] = 4519, + [SMALL_STATE(469)] = 4569, + [SMALL_STATE(470)] = 4619, + [SMALL_STATE(471)] = 4669, + [SMALL_STATE(472)] = 4751, + [SMALL_STATE(473)] = 4809, + [SMALL_STATE(474)] = 4859, + [SMALL_STATE(475)] = 4909, + [SMALL_STATE(476)] = 4959, + [SMALL_STATE(477)] = 5008, + [SMALL_STATE(478)] = 5057, + [SMALL_STATE(479)] = 5106, + [SMALL_STATE(480)] = 5155, + [SMALL_STATE(481)] = 5211, + [SMALL_STATE(482)] = 5285, + [SMALL_STATE(483)] = 5341, + [SMALL_STATE(484)] = 5412, + [SMALL_STATE(485)] = 5459, + [SMALL_STATE(486)] = 5532, + [SMALL_STATE(487)] = 5595, + [SMALL_STATE(488)] = 5647, + [SMALL_STATE(489)] = 5696, + [SMALL_STATE(490)] = 5745, + [SMALL_STATE(491)] = 5794, + [SMALL_STATE(492)] = 5843, + [SMALL_STATE(493)] = 5892, + [SMALL_STATE(494)] = 5941, + [SMALL_STATE(495)] = 5990, + [SMALL_STATE(496)] = 6039, + [SMALL_STATE(497)] = 6088, + [SMALL_STATE(498)] = 6139, + [SMALL_STATE(499)] = 6188, + [SMALL_STATE(500)] = 6237, + [SMALL_STATE(501)] = 6286, [SMALL_STATE(502)] = 6335, - [SMALL_STATE(503)] = 6379, - [SMALL_STATE(504)] = 6423, - [SMALL_STATE(505)] = 6467, - [SMALL_STATE(506)] = 6519, - [SMALL_STATE(507)] = 6563, - [SMALL_STATE(508)] = 6607, - [SMALL_STATE(509)] = 6651, - [SMALL_STATE(510)] = 6703, - [SMALL_STATE(511)] = 6746, - [SMALL_STATE(512)] = 6789, - [SMALL_STATE(513)] = 6838, - [SMALL_STATE(514)] = 6881, - [SMALL_STATE(515)] = 6924, - [SMALL_STATE(516)] = 6967, - [SMALL_STATE(517)] = 7010, - [SMALL_STATE(518)] = 7053, - [SMALL_STATE(519)] = 7096, - [SMALL_STATE(520)] = 7139, - [SMALL_STATE(521)] = 7182, - [SMALL_STATE(522)] = 7225, - [SMALL_STATE(523)] = 7268, - [SMALL_STATE(524)] = 7311, - [SMALL_STATE(525)] = 7354, - [SMALL_STATE(526)] = 7397, - [SMALL_STATE(527)] = 7440, - [SMALL_STATE(528)] = 7483, - [SMALL_STATE(529)] = 7526, - [SMALL_STATE(530)] = 7569, - [SMALL_STATE(531)] = 7612, - [SMALL_STATE(532)] = 7655, - [SMALL_STATE(533)] = 7698, - [SMALL_STATE(534)] = 7741, - [SMALL_STATE(535)] = 7784, - [SMALL_STATE(536)] = 7827, - [SMALL_STATE(537)] = 7870, - [SMALL_STATE(538)] = 7913, - [SMALL_STATE(539)] = 7956, - [SMALL_STATE(540)] = 7999, - [SMALL_STATE(541)] = 8042, - [SMALL_STATE(542)] = 8085, - [SMALL_STATE(543)] = 8128, - [SMALL_STATE(544)] = 8171, - [SMALL_STATE(545)] = 8214, - [SMALL_STATE(546)] = 8257, - [SMALL_STATE(547)] = 8300, - [SMALL_STATE(548)] = 8343, - [SMALL_STATE(549)] = 8386, - [SMALL_STATE(550)] = 8429, - [SMALL_STATE(551)] = 8472, - [SMALL_STATE(552)] = 8515, - [SMALL_STATE(553)] = 8558, - [SMALL_STATE(554)] = 8601, - [SMALL_STATE(555)] = 8644, - [SMALL_STATE(556)] = 8687, - [SMALL_STATE(557)] = 8730, - [SMALL_STATE(558)] = 8779, - [SMALL_STATE(559)] = 8822, - [SMALL_STATE(560)] = 8865, - [SMALL_STATE(561)] = 8924, - [SMALL_STATE(562)] = 8967, - [SMALL_STATE(563)] = 9010, - [SMALL_STATE(564)] = 9053, - [SMALL_STATE(565)] = 9096, - [SMALL_STATE(566)] = 9139, - [SMALL_STATE(567)] = 9182, - [SMALL_STATE(568)] = 9225, - [SMALL_STATE(569)] = 9268, - [SMALL_STATE(570)] = 9311, - [SMALL_STATE(571)] = 9354, - [SMALL_STATE(572)] = 9397, - [SMALL_STATE(573)] = 9446, - [SMALL_STATE(574)] = 9489, - [SMALL_STATE(575)] = 9536, - [SMALL_STATE(576)] = 9579, - [SMALL_STATE(577)] = 9621, - [SMALL_STATE(578)] = 9667, - [SMALL_STATE(579)] = 9709, - [SMALL_STATE(580)] = 9755, + [SMALL_STATE(503)] = 6384, + [SMALL_STATE(504)] = 6436, + [SMALL_STATE(505)] = 6480, + [SMALL_STATE(506)] = 6532, + [SMALL_STATE(507)] = 6576, + [SMALL_STATE(508)] = 6620, + [SMALL_STATE(509)] = 6664, + [SMALL_STATE(510)] = 6708, + [SMALL_STATE(511)] = 6752, + [SMALL_STATE(512)] = 6796, + [SMALL_STATE(513)] = 6840, + [SMALL_STATE(514)] = 6883, + [SMALL_STATE(515)] = 6926, + [SMALL_STATE(516)] = 6969, + [SMALL_STATE(517)] = 7012, + [SMALL_STATE(518)] = 7055, + [SMALL_STATE(519)] = 7098, + [SMALL_STATE(520)] = 7141, + [SMALL_STATE(521)] = 7184, + [SMALL_STATE(522)] = 7227, + [SMALL_STATE(523)] = 7270, + [SMALL_STATE(524)] = 7313, + [SMALL_STATE(525)] = 7356, + [SMALL_STATE(526)] = 7399, + [SMALL_STATE(527)] = 7442, + [SMALL_STATE(528)] = 7491, + [SMALL_STATE(529)] = 7534, + [SMALL_STATE(530)] = 7577, + [SMALL_STATE(531)] = 7626, + [SMALL_STATE(532)] = 7669, + [SMALL_STATE(533)] = 7712, + [SMALL_STATE(534)] = 7755, + [SMALL_STATE(535)] = 7798, + [SMALL_STATE(536)] = 7841, + [SMALL_STATE(537)] = 7884, + [SMALL_STATE(538)] = 7927, + [SMALL_STATE(539)] = 7970, + [SMALL_STATE(540)] = 8013, + [SMALL_STATE(541)] = 8056, + [SMALL_STATE(542)] = 8099, + [SMALL_STATE(543)] = 8142, + [SMALL_STATE(544)] = 8185, + [SMALL_STATE(545)] = 8228, + [SMALL_STATE(546)] = 8271, + [SMALL_STATE(547)] = 8314, + [SMALL_STATE(548)] = 8357, + [SMALL_STATE(549)] = 8400, + [SMALL_STATE(550)] = 8449, + [SMALL_STATE(551)] = 8492, + [SMALL_STATE(552)] = 8539, + [SMALL_STATE(553)] = 8582, + [SMALL_STATE(554)] = 8625, + [SMALL_STATE(555)] = 8668, + [SMALL_STATE(556)] = 8711, + [SMALL_STATE(557)] = 8754, + [SMALL_STATE(558)] = 8813, + [SMALL_STATE(559)] = 8856, + [SMALL_STATE(560)] = 8899, + [SMALL_STATE(561)] = 8942, + [SMALL_STATE(562)] = 8985, + [SMALL_STATE(563)] = 9028, + [SMALL_STATE(564)] = 9071, + [SMALL_STATE(565)] = 9114, + [SMALL_STATE(566)] = 9157, + [SMALL_STATE(567)] = 9200, + [SMALL_STATE(568)] = 9243, + [SMALL_STATE(569)] = 9286, + [SMALL_STATE(570)] = 9329, + [SMALL_STATE(571)] = 9372, + [SMALL_STATE(572)] = 9415, + [SMALL_STATE(573)] = 9458, + [SMALL_STATE(574)] = 9501, + [SMALL_STATE(575)] = 9544, + [SMALL_STATE(576)] = 9587, + [SMALL_STATE(577)] = 9630, + [SMALL_STATE(578)] = 9673, + [SMALL_STATE(579)] = 9716, + [SMALL_STATE(580)] = 9758, [SMALL_STATE(581)] = 9804, - [SMALL_STATE(582)] = 9851, - [SMALL_STATE(583)] = 9900, - [SMALL_STATE(584)] = 9969, - [SMALL_STATE(585)] = 10011, - [SMALL_STATE(586)] = 10051, - [SMALL_STATE(587)] = 10091, - [SMALL_STATE(588)] = 10131, - [SMALL_STATE(589)] = 10197, - [SMALL_STATE(590)] = 10237, - [SMALL_STATE(591)] = 10277, - [SMALL_STATE(592)] = 10317, - [SMALL_STATE(593)] = 10357, - [SMALL_STATE(594)] = 10397, - [SMALL_STATE(595)] = 10437, - [SMALL_STATE(596)] = 10477, - [SMALL_STATE(597)] = 10517, - [SMALL_STATE(598)] = 10557, - [SMALL_STATE(599)] = 10597, - [SMALL_STATE(600)] = 10639, - [SMALL_STATE(601)] = 10679, - [SMALL_STATE(602)] = 10719, - [SMALL_STATE(603)] = 10759, - [SMALL_STATE(604)] = 10799, - [SMALL_STATE(605)] = 10839, - [SMALL_STATE(606)] = 10879, - [SMALL_STATE(607)] = 10919, - [SMALL_STATE(608)] = 10959, - [SMALL_STATE(609)] = 10999, - [SMALL_STATE(610)] = 11039, - [SMALL_STATE(611)] = 11108, - [SMALL_STATE(612)] = 11171, - [SMALL_STATE(613)] = 11234, - [SMALL_STATE(614)] = 11277, - [SMALL_STATE(615)] = 11346, - [SMALL_STATE(616)] = 11407, - [SMALL_STATE(617)] = 11454, - [SMALL_STATE(618)] = 11519, - [SMALL_STATE(619)] = 11588, - [SMALL_STATE(620)] = 11647, - [SMALL_STATE(621)] = 11698, - [SMALL_STATE(622)] = 11755, - [SMALL_STATE(623)] = 11800, - [SMALL_STATE(624)] = 11844, - [SMALL_STATE(625)] = 11886, - [SMALL_STATE(626)] = 11930, - [SMALL_STATE(627)] = 12006, - [SMALL_STATE(628)] = 12050, - [SMALL_STATE(629)] = 12087, - [SMALL_STATE(630)] = 12126, - [SMALL_STATE(631)] = 12201, - [SMALL_STATE(632)] = 12267, - [SMALL_STATE(633)] = 12333, - [SMALL_STATE(634)] = 12399, - [SMALL_STATE(635)] = 12465, - [SMALL_STATE(636)] = 12531, - [SMALL_STATE(637)] = 12573, - [SMALL_STATE(638)] = 12609, - [SMALL_STATE(639)] = 12665, - [SMALL_STATE(640)] = 12723, - [SMALL_STATE(641)] = 12777, - [SMALL_STATE(642)] = 12837, - [SMALL_STATE(643)] = 12873, - [SMALL_STATE(644)] = 12921, - [SMALL_STATE(645)] = 12983, - [SMALL_STATE(646)] = 13049, - [SMALL_STATE(647)] = 13091, - [SMALL_STATE(648)] = 13151, - [SMALL_STATE(649)] = 13209, - [SMALL_STATE(650)] = 13253, - [SMALL_STATE(651)] = 13322, - [SMALL_STATE(652)] = 13377, - [SMALL_STATE(653)] = 13446, - [SMALL_STATE(654)] = 13511, - [SMALL_STATE(655)] = 13570, - [SMALL_STATE(656)] = 13639, - [SMALL_STATE(657)] = 13692, - [SMALL_STATE(658)] = 13761, - [SMALL_STATE(659)] = 13830, - [SMALL_STATE(660)] = 13899, - [SMALL_STATE(661)] = 13968, - [SMALL_STATE(662)] = 14037, - [SMALL_STATE(663)] = 14106, - [SMALL_STATE(664)] = 14141, - [SMALL_STATE(665)] = 14210, - [SMALL_STATE(666)] = 14245, - [SMALL_STATE(667)] = 14280, - [SMALL_STATE(668)] = 14317, - [SMALL_STATE(669)] = 14376, - [SMALL_STATE(670)] = 14445, - [SMALL_STATE(671)] = 14514, - [SMALL_STATE(672)] = 14583, - [SMALL_STATE(673)] = 14652, - [SMALL_STATE(674)] = 14721, - [SMALL_STATE(675)] = 14790, - [SMALL_STATE(676)] = 14859, - [SMALL_STATE(677)] = 14928, - [SMALL_STATE(678)] = 14997, - [SMALL_STATE(679)] = 15066, - [SMALL_STATE(680)] = 15135, - [SMALL_STATE(681)] = 15204, - [SMALL_STATE(682)] = 15273, - [SMALL_STATE(683)] = 15342, - [SMALL_STATE(684)] = 15411, - [SMALL_STATE(685)] = 15480, - [SMALL_STATE(686)] = 15549, - [SMALL_STATE(687)] = 15618, - [SMALL_STATE(688)] = 15687, - [SMALL_STATE(689)] = 15722, - [SMALL_STATE(690)] = 15786, - [SMALL_STATE(691)] = 15850, - [SMALL_STATE(692)] = 15914, - [SMALL_STATE(693)] = 15952, - [SMALL_STATE(694)] = 15992, - [SMALL_STATE(695)] = 16042, - [SMALL_STATE(696)] = 16082, - [SMALL_STATE(697)] = 16116, - [SMALL_STATE(698)] = 16150, - [SMALL_STATE(699)] = 16214, - [SMALL_STATE(700)] = 16278, - [SMALL_STATE(701)] = 16342, - [SMALL_STATE(702)] = 16406, - [SMALL_STATE(703)] = 16440, - [SMALL_STATE(704)] = 16474, - [SMALL_STATE(705)] = 16530, - [SMALL_STATE(706)] = 16594, - [SMALL_STATE(707)] = 16654, - [SMALL_STATE(708)] = 16704, - [SMALL_STATE(709)] = 16770, - [SMALL_STATE(710)] = 16833, - [SMALL_STATE(711)] = 16888, - [SMALL_STATE(712)] = 16951, - [SMALL_STATE(713)] = 17014, - [SMALL_STATE(714)] = 17075, - [SMALL_STATE(715)] = 17138, - [SMALL_STATE(716)] = 17171, - [SMALL_STATE(717)] = 17226, - [SMALL_STATE(718)] = 17281, - [SMALL_STATE(719)] = 17342, - [SMALL_STATE(720)] = 17405, - [SMALL_STATE(721)] = 17468, - [SMALL_STATE(722)] = 17531, - [SMALL_STATE(723)] = 17594, - [SMALL_STATE(724)] = 17657, - [SMALL_STATE(725)] = 17720, - [SMALL_STATE(726)] = 17783, - [SMALL_STATE(727)] = 17846, - [SMALL_STATE(728)] = 17909, - [SMALL_STATE(729)] = 17972, - [SMALL_STATE(730)] = 18035, - [SMALL_STATE(731)] = 18068, - [SMALL_STATE(732)] = 18101, - [SMALL_STATE(733)] = 18164, - [SMALL_STATE(734)] = 18227, - [SMALL_STATE(735)] = 18282, - [SMALL_STATE(736)] = 18315, - [SMALL_STATE(737)] = 18378, - [SMALL_STATE(738)] = 18441, - [SMALL_STATE(739)] = 18504, - [SMALL_STATE(740)] = 18567, - [SMALL_STATE(741)] = 18630, - [SMALL_STATE(742)] = 18693, - [SMALL_STATE(743)] = 18756, - [SMALL_STATE(744)] = 18819, - [SMALL_STATE(745)] = 18882, - [SMALL_STATE(746)] = 18945, - [SMALL_STATE(747)] = 19008, - [SMALL_STATE(748)] = 19071, - [SMALL_STATE(749)] = 19134, - [SMALL_STATE(750)] = 19197, - [SMALL_STATE(751)] = 19260, - [SMALL_STATE(752)] = 19323, - [SMALL_STATE(753)] = 19355, - [SMALL_STATE(754)] = 19387, - [SMALL_STATE(755)] = 19425, - [SMALL_STATE(756)] = 19477, - [SMALL_STATE(757)] = 19529, - [SMALL_STATE(758)] = 19563, - [SMALL_STATE(759)] = 19621, - [SMALL_STATE(760)] = 19673, - [SMALL_STATE(761)] = 19725, - [SMALL_STATE(762)] = 19777, - [SMALL_STATE(763)] = 19829, - [SMALL_STATE(764)] = 19881, - [SMALL_STATE(765)] = 19934, - [SMALL_STATE(766)] = 19965, - [SMALL_STATE(767)] = 19996, - [SMALL_STATE(768)] = 20037, - [SMALL_STATE(769)] = 20086, - [SMALL_STATE(770)] = 20139, - [SMALL_STATE(771)] = 20192, - [SMALL_STATE(772)] = 20245, - [SMALL_STATE(773)] = 20297, - [SMALL_STATE(774)] = 20349, - [SMALL_STATE(775)] = 20395, - [SMALL_STATE(776)] = 20447, - [SMALL_STATE(777)] = 20493, - [SMALL_STATE(778)] = 20545, - [SMALL_STATE(779)] = 20593, - [SMALL_STATE(780)] = 20645, - [SMALL_STATE(781)] = 20697, - [SMALL_STATE(782)] = 20743, - [SMALL_STATE(783)] = 20789, - [SMALL_STATE(784)] = 20837, - [SMALL_STATE(785)] = 20883, - [SMALL_STATE(786)] = 20931, - [SMALL_STATE(787)] = 20977, - [SMALL_STATE(788)] = 21025, - [SMALL_STATE(789)] = 21073, - [SMALL_STATE(790)] = 21125, - [SMALL_STATE(791)] = 21173, - [SMALL_STATE(792)] = 21219, - [SMALL_STATE(793)] = 21252, - [SMALL_STATE(794)] = 21301, - [SMALL_STATE(795)] = 21348, - [SMALL_STATE(796)] = 21377, - [SMALL_STATE(797)] = 21406, - [SMALL_STATE(798)] = 21455, - [SMALL_STATE(799)] = 21502, - [SMALL_STATE(800)] = 21549, - [SMALL_STATE(801)] = 21578, - [SMALL_STATE(802)] = 21625, - [SMALL_STATE(803)] = 21674, - [SMALL_STATE(804)] = 21703, - [SMALL_STATE(805)] = 21750, - [SMALL_STATE(806)] = 21792, - [SMALL_STATE(807)] = 21836, - [SMALL_STATE(808)] = 21886, - [SMALL_STATE(809)] = 21930, - [SMALL_STATE(810)] = 21972, - [SMALL_STATE(811)] = 22014, - [SMALL_STATE(812)] = 22064, - [SMALL_STATE(813)] = 22106, - [SMALL_STATE(814)] = 22156, - [SMALL_STATE(815)] = 22199, - [SMALL_STATE(816)] = 22232, - [SMALL_STATE(817)] = 22271, - [SMALL_STATE(818)] = 22312, - [SMALL_STATE(819)] = 22353, - [SMALL_STATE(820)] = 22396, - [SMALL_STATE(821)] = 22436, - [SMALL_STATE(822)] = 22476, - [SMALL_STATE(823)] = 22516, - [SMALL_STATE(824)] = 22552, - [SMALL_STATE(825)] = 22592, - [SMALL_STATE(826)] = 22632, - [SMALL_STATE(827)] = 22666, - [SMALL_STATE(828)] = 22703, - [SMALL_STATE(829)] = 22740, - [SMALL_STATE(830)] = 22777, - [SMALL_STATE(831)] = 22814, - [SMALL_STATE(832)] = 22851, - [SMALL_STATE(833)] = 22878, - [SMALL_STATE(834)] = 22915, - [SMALL_STATE(835)] = 22948, - [SMALL_STATE(836)] = 22973, - [SMALL_STATE(837)] = 23010, - [SMALL_STATE(838)] = 23035, - [SMALL_STATE(839)] = 23077, - [SMALL_STATE(840)] = 23119, - [SMALL_STATE(841)] = 23161, - [SMALL_STATE(842)] = 23203, - [SMALL_STATE(843)] = 23245, - [SMALL_STATE(844)] = 23287, - [SMALL_STATE(845)] = 23329, - [SMALL_STATE(846)] = 23355, - [SMALL_STATE(847)] = 23397, - [SMALL_STATE(848)] = 23430, - [SMALL_STATE(849)] = 23463, - [SMALL_STATE(850)] = 23500, - [SMALL_STATE(851)] = 23536, - [SMALL_STATE(852)] = 23568, - [SMALL_STATE(853)] = 23598, - [SMALL_STATE(854)] = 23632, - [SMALL_STATE(855)] = 23666, - [SMALL_STATE(856)] = 23702, - [SMALL_STATE(857)] = 23736, - [SMALL_STATE(858)] = 23770, - [SMALL_STATE(859)] = 23798, - [SMALL_STATE(860)] = 23828, - [SMALL_STATE(861)] = 23864, - [SMALL_STATE(862)] = 23900, - [SMALL_STATE(863)] = 23933, - [SMALL_STATE(864)] = 23966, - [SMALL_STATE(865)] = 23997, - [SMALL_STATE(866)] = 24028, - [SMALL_STATE(867)] = 24059, - [SMALL_STATE(868)] = 24090, - [SMALL_STATE(869)] = 24121, - [SMALL_STATE(870)] = 24152, - [SMALL_STATE(871)] = 24185, - [SMALL_STATE(872)] = 24212, - [SMALL_STATE(873)] = 24245, - [SMALL_STATE(874)] = 24276, - [SMALL_STATE(875)] = 24307, - [SMALL_STATE(876)] = 24335, - [SMALL_STATE(877)] = 24367, - [SMALL_STATE(878)] = 24399, - [SMALL_STATE(879)] = 24425, - [SMALL_STATE(880)] = 24455, - [SMALL_STATE(881)] = 24483, - [SMALL_STATE(882)] = 24509, - [SMALL_STATE(883)] = 24533, - [SMALL_STATE(884)] = 24559, - [SMALL_STATE(885)] = 24587, - [SMALL_STATE(886)] = 24619, - [SMALL_STATE(887)] = 24648, - [SMALL_STATE(888)] = 24673, - [SMALL_STATE(889)] = 24696, - [SMALL_STATE(890)] = 24719, - [SMALL_STATE(891)] = 24754, - [SMALL_STATE(892)] = 24775, - [SMALL_STATE(893)] = 24810, - [SMALL_STATE(894)] = 24835, - [SMALL_STATE(895)] = 24856, - [SMALL_STATE(896)] = 24879, - [SMALL_STATE(897)] = 24904, - [SMALL_STATE(898)] = 24924, - [SMALL_STATE(899)] = 24944, - [SMALL_STATE(900)] = 24960, - [SMALL_STATE(901)] = 24976, - [SMALL_STATE(902)] = 24996, - [SMALL_STATE(903)] = 25018, - [SMALL_STATE(904)] = 25038, - [SMALL_STATE(905)] = 25058, - [SMALL_STATE(906)] = 25078, - [SMALL_STATE(907)] = 25094, - [SMALL_STATE(908)] = 25122, - [SMALL_STATE(909)] = 25142, - [SMALL_STATE(910)] = 25162, - [SMALL_STATE(911)] = 25182, - [SMALL_STATE(912)] = 25202, - [SMALL_STATE(913)] = 25222, - [SMALL_STATE(914)] = 25242, - [SMALL_STATE(915)] = 25262, - [SMALL_STATE(916)] = 25282, - [SMALL_STATE(917)] = 25302, - [SMALL_STATE(918)] = 25322, - [SMALL_STATE(919)] = 25342, - [SMALL_STATE(920)] = 25361, - [SMALL_STATE(921)] = 25390, - [SMALL_STATE(922)] = 25409, - [SMALL_STATE(923)] = 25438, - [SMALL_STATE(924)] = 25467, - [SMALL_STATE(925)] = 25496, - [SMALL_STATE(926)] = 25515, - [SMALL_STATE(927)] = 25529, - [SMALL_STATE(928)] = 25553, - [SMALL_STATE(929)] = 25567, - [SMALL_STATE(930)] = 25589, - [SMALL_STATE(931)] = 25609, - [SMALL_STATE(932)] = 25623, - [SMALL_STATE(933)] = 25645, - [SMALL_STATE(934)] = 25665, - [SMALL_STATE(935)] = 25679, - [SMALL_STATE(936)] = 25703, - [SMALL_STATE(937)] = 25717, - [SMALL_STATE(938)] = 25738, - [SMALL_STATE(939)] = 25761, - [SMALL_STATE(940)] = 25784, - [SMALL_STATE(941)] = 25797, - [SMALL_STATE(942)] = 25820, - [SMALL_STATE(943)] = 25837, - [SMALL_STATE(944)] = 25860, - [SMALL_STATE(945)] = 25877, - [SMALL_STATE(946)] = 25894, - [SMALL_STATE(947)] = 25915, - [SMALL_STATE(948)] = 25932, - [SMALL_STATE(949)] = 25949, - [SMALL_STATE(950)] = 25966, - [SMALL_STATE(951)] = 25983, - [SMALL_STATE(952)] = 26000, - [SMALL_STATE(953)] = 26013, - [SMALL_STATE(954)] = 26026, - [SMALL_STATE(955)] = 26049, - [SMALL_STATE(956)] = 26062, - [SMALL_STATE(957)] = 26083, - [SMALL_STATE(958)] = 26100, - [SMALL_STATE(959)] = 26121, - [SMALL_STATE(960)] = 26134, - [SMALL_STATE(961)] = 26155, - [SMALL_STATE(962)] = 26172, - [SMALL_STATE(963)] = 26189, - [SMALL_STATE(964)] = 26206, - [SMALL_STATE(965)] = 26219, - [SMALL_STATE(966)] = 26232, - [SMALL_STATE(967)] = 26249, - [SMALL_STATE(968)] = 26262, - [SMALL_STATE(969)] = 26275, - [SMALL_STATE(970)] = 26288, - [SMALL_STATE(971)] = 26301, - [SMALL_STATE(972)] = 26314, - [SMALL_STATE(973)] = 26327, - [SMALL_STATE(974)] = 26350, - [SMALL_STATE(975)] = 26367, - [SMALL_STATE(976)] = 26380, - [SMALL_STATE(977)] = 26401, - [SMALL_STATE(978)] = 26414, - [SMALL_STATE(979)] = 26431, - [SMALL_STATE(980)] = 26444, - [SMALL_STATE(981)] = 26460, - [SMALL_STATE(982)] = 26476, - [SMALL_STATE(983)] = 26496, - [SMALL_STATE(984)] = 26512, - [SMALL_STATE(985)] = 26532, - [SMALL_STATE(986)] = 26552, - [SMALL_STATE(987)] = 26568, - [SMALL_STATE(988)] = 26584, - [SMALL_STATE(989)] = 26602, - [SMALL_STATE(990)] = 26622, - [SMALL_STATE(991)] = 26642, - [SMALL_STATE(992)] = 26662, - [SMALL_STATE(993)] = 26682, - [SMALL_STATE(994)] = 26702, - [SMALL_STATE(995)] = 26722, - [SMALL_STATE(996)] = 26734, - [SMALL_STATE(997)] = 26754, - [SMALL_STATE(998)] = 26774, - [SMALL_STATE(999)] = 26794, - [SMALL_STATE(1000)] = 26808, - [SMALL_STATE(1001)] = 26824, - [SMALL_STATE(1002)] = 26844, - [SMALL_STATE(1003)] = 26864, - [SMALL_STATE(1004)] = 26880, - [SMALL_STATE(1005)] = 26896, - [SMALL_STATE(1006)] = 26916, - [SMALL_STATE(1007)] = 26931, - [SMALL_STATE(1008)] = 26948, - [SMALL_STATE(1009)] = 26963, - [SMALL_STATE(1010)] = 26978, - [SMALL_STATE(1011)] = 26993, - [SMALL_STATE(1012)] = 27010, - [SMALL_STATE(1013)] = 27021, - [SMALL_STATE(1014)] = 27038, - [SMALL_STATE(1015)] = 27053, - [SMALL_STATE(1016)] = 27070, - [SMALL_STATE(1017)] = 27087, - [SMALL_STATE(1018)] = 27104, - [SMALL_STATE(1019)] = 27121, - [SMALL_STATE(1020)] = 27138, - [SMALL_STATE(1021)] = 27155, - [SMALL_STATE(1022)] = 27172, - [SMALL_STATE(1023)] = 27187, - [SMALL_STATE(1024)] = 27204, - [SMALL_STATE(1025)] = 27221, - [SMALL_STATE(1026)] = 27238, - [SMALL_STATE(1027)] = 27253, - [SMALL_STATE(1028)] = 27266, - [SMALL_STATE(1029)] = 27283, - [SMALL_STATE(1030)] = 27294, - [SMALL_STATE(1031)] = 27309, - [SMALL_STATE(1032)] = 27324, - [SMALL_STATE(1033)] = 27341, - [SMALL_STATE(1034)] = 27354, - [SMALL_STATE(1035)] = 27371, - [SMALL_STATE(1036)] = 27388, - [SMALL_STATE(1037)] = 27405, - [SMALL_STATE(1038)] = 27420, - [SMALL_STATE(1039)] = 27435, - [SMALL_STATE(1040)] = 27450, - [SMALL_STATE(1041)] = 27461, - [SMALL_STATE(1042)] = 27472, - [SMALL_STATE(1043)] = 27487, - [SMALL_STATE(1044)] = 27502, - [SMALL_STATE(1045)] = 27517, - [SMALL_STATE(1046)] = 27534, - [SMALL_STATE(1047)] = 27549, - [SMALL_STATE(1048)] = 27566, - [SMALL_STATE(1049)] = 27583, - [SMALL_STATE(1050)] = 27600, - [SMALL_STATE(1051)] = 27615, - [SMALL_STATE(1052)] = 27632, - [SMALL_STATE(1053)] = 27649, - [SMALL_STATE(1054)] = 27660, - [SMALL_STATE(1055)] = 27675, - [SMALL_STATE(1056)] = 27692, - [SMALL_STATE(1057)] = 27709, - [SMALL_STATE(1058)] = 27726, - [SMALL_STATE(1059)] = 27741, - [SMALL_STATE(1060)] = 27756, - [SMALL_STATE(1061)] = 27773, - [SMALL_STATE(1062)] = 27788, - [SMALL_STATE(1063)] = 27805, - [SMALL_STATE(1064)] = 27819, - [SMALL_STATE(1065)] = 27833, - [SMALL_STATE(1066)] = 27847, - [SMALL_STATE(1067)] = 27861, - [SMALL_STATE(1068)] = 27875, - [SMALL_STATE(1069)] = 27889, - [SMALL_STATE(1070)] = 27903, - [SMALL_STATE(1071)] = 27917, - [SMALL_STATE(1072)] = 27931, - [SMALL_STATE(1073)] = 27941, - [SMALL_STATE(1074)] = 27955, - [SMALL_STATE(1075)] = 27969, - [SMALL_STATE(1076)] = 27983, - [SMALL_STATE(1077)] = 27997, - [SMALL_STATE(1078)] = 28011, - [SMALL_STATE(1079)] = 28025, - [SMALL_STATE(1080)] = 28039, - [SMALL_STATE(1081)] = 28053, - [SMALL_STATE(1082)] = 28067, - [SMALL_STATE(1083)] = 28081, - [SMALL_STATE(1084)] = 28095, - [SMALL_STATE(1085)] = 28109, - [SMALL_STATE(1086)] = 28119, - [SMALL_STATE(1087)] = 28133, - [SMALL_STATE(1088)] = 28147, - [SMALL_STATE(1089)] = 28161, - [SMALL_STATE(1090)] = 28175, - [SMALL_STATE(1091)] = 28189, - [SMALL_STATE(1092)] = 28199, - [SMALL_STATE(1093)] = 28209, - [SMALL_STATE(1094)] = 28223, - [SMALL_STATE(1095)] = 28237, - [SMALL_STATE(1096)] = 28251, - [SMALL_STATE(1097)] = 28265, - [SMALL_STATE(1098)] = 28279, - [SMALL_STATE(1099)] = 28293, - [SMALL_STATE(1100)] = 28307, - [SMALL_STATE(1101)] = 28321, - [SMALL_STATE(1102)] = 28335, - [SMALL_STATE(1103)] = 28349, - [SMALL_STATE(1104)] = 28363, - [SMALL_STATE(1105)] = 28377, - [SMALL_STATE(1106)] = 28391, - [SMALL_STATE(1107)] = 28405, - [SMALL_STATE(1108)] = 28419, - [SMALL_STATE(1109)] = 28429, - [SMALL_STATE(1110)] = 28443, - [SMALL_STATE(1111)] = 28457, - [SMALL_STATE(1112)] = 28467, - [SMALL_STATE(1113)] = 28481, - [SMALL_STATE(1114)] = 28495, - [SMALL_STATE(1115)] = 28509, - [SMALL_STATE(1116)] = 28523, - [SMALL_STATE(1117)] = 28535, - [SMALL_STATE(1118)] = 28549, - [SMALL_STATE(1119)] = 28563, - [SMALL_STATE(1120)] = 28577, - [SMALL_STATE(1121)] = 28589, - [SMALL_STATE(1122)] = 28603, - [SMALL_STATE(1123)] = 28617, - [SMALL_STATE(1124)] = 28631, - [SMALL_STATE(1125)] = 28645, - [SMALL_STATE(1126)] = 28659, - [SMALL_STATE(1127)] = 28673, - [SMALL_STATE(1128)] = 28687, - [SMALL_STATE(1129)] = 28701, - [SMALL_STATE(1130)] = 28715, - [SMALL_STATE(1131)] = 28729, - [SMALL_STATE(1132)] = 28743, - [SMALL_STATE(1133)] = 28753, - [SMALL_STATE(1134)] = 28767, - [SMALL_STATE(1135)] = 28777, - [SMALL_STATE(1136)] = 28791, - [SMALL_STATE(1137)] = 28805, - [SMALL_STATE(1138)] = 28819, - [SMALL_STATE(1139)] = 28833, - [SMALL_STATE(1140)] = 28847, - [SMALL_STATE(1141)] = 28861, - [SMALL_STATE(1142)] = 28871, - [SMALL_STATE(1143)] = 28885, - [SMALL_STATE(1144)] = 28899, - [SMALL_STATE(1145)] = 28909, - [SMALL_STATE(1146)] = 28923, - [SMALL_STATE(1147)] = 28937, - [SMALL_STATE(1148)] = 28951, - [SMALL_STATE(1149)] = 28965, - [SMALL_STATE(1150)] = 28979, - [SMALL_STATE(1151)] = 28989, - [SMALL_STATE(1152)] = 29003, - [SMALL_STATE(1153)] = 29017, - [SMALL_STATE(1154)] = 29031, - [SMALL_STATE(1155)] = 29045, - [SMALL_STATE(1156)] = 29059, - [SMALL_STATE(1157)] = 29073, - [SMALL_STATE(1158)] = 29087, - [SMALL_STATE(1159)] = 29101, - [SMALL_STATE(1160)] = 29115, - [SMALL_STATE(1161)] = 29129, - [SMALL_STATE(1162)] = 29143, - [SMALL_STATE(1163)] = 29157, - [SMALL_STATE(1164)] = 29167, - [SMALL_STATE(1165)] = 29181, - [SMALL_STATE(1166)] = 29195, - [SMALL_STATE(1167)] = 29209, - [SMALL_STATE(1168)] = 29223, - [SMALL_STATE(1169)] = 29237, - [SMALL_STATE(1170)] = 29251, - [SMALL_STATE(1171)] = 29265, - [SMALL_STATE(1172)] = 29279, - [SMALL_STATE(1173)] = 29293, - [SMALL_STATE(1174)] = 29307, - [SMALL_STATE(1175)] = 29321, - [SMALL_STATE(1176)] = 29335, - [SMALL_STATE(1177)] = 29346, - [SMALL_STATE(1178)] = 29355, - [SMALL_STATE(1179)] = 29366, - [SMALL_STATE(1180)] = 29377, - [SMALL_STATE(1181)] = 29388, - [SMALL_STATE(1182)] = 29397, - [SMALL_STATE(1183)] = 29408, - [SMALL_STATE(1184)] = 29419, - [SMALL_STATE(1185)] = 29430, - [SMALL_STATE(1186)] = 29441, - [SMALL_STATE(1187)] = 29452, - [SMALL_STATE(1188)] = 29463, - [SMALL_STATE(1189)] = 29474, - [SMALL_STATE(1190)] = 29485, - [SMALL_STATE(1191)] = 29496, - [SMALL_STATE(1192)] = 29507, - [SMALL_STATE(1193)] = 29518, - [SMALL_STATE(1194)] = 29527, - [SMALL_STATE(1195)] = 29538, - [SMALL_STATE(1196)] = 29549, - [SMALL_STATE(1197)] = 29558, - [SMALL_STATE(1198)] = 29567, - [SMALL_STATE(1199)] = 29578, - [SMALL_STATE(1200)] = 29589, - [SMALL_STATE(1201)] = 29600, - [SMALL_STATE(1202)] = 29609, - [SMALL_STATE(1203)] = 29618, - [SMALL_STATE(1204)] = 29627, - [SMALL_STATE(1205)] = 29638, - [SMALL_STATE(1206)] = 29649, - [SMALL_STATE(1207)] = 29660, - [SMALL_STATE(1208)] = 29671, - [SMALL_STATE(1209)] = 29682, - [SMALL_STATE(1210)] = 29691, - [SMALL_STATE(1211)] = 29702, - [SMALL_STATE(1212)] = 29711, - [SMALL_STATE(1213)] = 29722, - [SMALL_STATE(1214)] = 29731, - [SMALL_STATE(1215)] = 29742, - [SMALL_STATE(1216)] = 29753, - [SMALL_STATE(1217)] = 29764, - [SMALL_STATE(1218)] = 29775, - [SMALL_STATE(1219)] = 29784, - [SMALL_STATE(1220)] = 29795, - [SMALL_STATE(1221)] = 29806, - [SMALL_STATE(1222)] = 29817, - [SMALL_STATE(1223)] = 29826, - [SMALL_STATE(1224)] = 29835, - [SMALL_STATE(1225)] = 29846, - [SMALL_STATE(1226)] = 29855, - [SMALL_STATE(1227)] = 29866, - [SMALL_STATE(1228)] = 29875, - [SMALL_STATE(1229)] = 29886, - [SMALL_STATE(1230)] = 29897, - [SMALL_STATE(1231)] = 29908, - [SMALL_STATE(1232)] = 29919, - [SMALL_STATE(1233)] = 29930, - [SMALL_STATE(1234)] = 29941, - [SMALL_STATE(1235)] = 29950, - [SMALL_STATE(1236)] = 29959, - [SMALL_STATE(1237)] = 29968, - [SMALL_STATE(1238)] = 29977, - [SMALL_STATE(1239)] = 29986, - [SMALL_STATE(1240)] = 29997, - [SMALL_STATE(1241)] = 30008, - [SMALL_STATE(1242)] = 30019, - [SMALL_STATE(1243)] = 30030, - [SMALL_STATE(1244)] = 30041, - [SMALL_STATE(1245)] = 30052, - [SMALL_STATE(1246)] = 30063, - [SMALL_STATE(1247)] = 30074, - [SMALL_STATE(1248)] = 30083, - [SMALL_STATE(1249)] = 30094, - [SMALL_STATE(1250)] = 30105, - [SMALL_STATE(1251)] = 30114, - [SMALL_STATE(1252)] = 30123, - [SMALL_STATE(1253)] = 30132, - [SMALL_STATE(1254)] = 30143, - [SMALL_STATE(1255)] = 30154, - [SMALL_STATE(1256)] = 30163, - [SMALL_STATE(1257)] = 30172, - [SMALL_STATE(1258)] = 30183, - [SMALL_STATE(1259)] = 30194, - [SMALL_STATE(1260)] = 30205, - [SMALL_STATE(1261)] = 30216, - [SMALL_STATE(1262)] = 30227, - [SMALL_STATE(1263)] = 30238, - [SMALL_STATE(1264)] = 30249, - [SMALL_STATE(1265)] = 30258, - [SMALL_STATE(1266)] = 30269, - [SMALL_STATE(1267)] = 30280, - [SMALL_STATE(1268)] = 30289, - [SMALL_STATE(1269)] = 30300, - [SMALL_STATE(1270)] = 30311, - [SMALL_STATE(1271)] = 30322, - [SMALL_STATE(1272)] = 30333, - [SMALL_STATE(1273)] = 30344, - [SMALL_STATE(1274)] = 30353, - [SMALL_STATE(1275)] = 30364, - [SMALL_STATE(1276)] = 30375, - [SMALL_STATE(1277)] = 30386, - [SMALL_STATE(1278)] = 30395, - [SMALL_STATE(1279)] = 30406, - [SMALL_STATE(1280)] = 30417, - [SMALL_STATE(1281)] = 30428, - [SMALL_STATE(1282)] = 30439, - [SMALL_STATE(1283)] = 30450, - [SMALL_STATE(1284)] = 30461, - [SMALL_STATE(1285)] = 30472, - [SMALL_STATE(1286)] = 30481, - [SMALL_STATE(1287)] = 30492, - [SMALL_STATE(1288)] = 30501, - [SMALL_STATE(1289)] = 30510, - [SMALL_STATE(1290)] = 30521, - [SMALL_STATE(1291)] = 30532, - [SMALL_STATE(1292)] = 30541, - [SMALL_STATE(1293)] = 30550, - [SMALL_STATE(1294)] = 30561, - [SMALL_STATE(1295)] = 30572, - [SMALL_STATE(1296)] = 30581, - [SMALL_STATE(1297)] = 30590, - [SMALL_STATE(1298)] = 30599, - [SMALL_STATE(1299)] = 30607, - [SMALL_STATE(1300)] = 30615, - [SMALL_STATE(1301)] = 30623, - [SMALL_STATE(1302)] = 30631, - [SMALL_STATE(1303)] = 30639, - [SMALL_STATE(1304)] = 30647, - [SMALL_STATE(1305)] = 30655, - [SMALL_STATE(1306)] = 30663, - [SMALL_STATE(1307)] = 30671, - [SMALL_STATE(1308)] = 30679, - [SMALL_STATE(1309)] = 30687, - [SMALL_STATE(1310)] = 30695, - [SMALL_STATE(1311)] = 30703, - [SMALL_STATE(1312)] = 30711, - [SMALL_STATE(1313)] = 30719, - [SMALL_STATE(1314)] = 30727, - [SMALL_STATE(1315)] = 30735, - [SMALL_STATE(1316)] = 30743, - [SMALL_STATE(1317)] = 30751, - [SMALL_STATE(1318)] = 30759, - [SMALL_STATE(1319)] = 30767, - [SMALL_STATE(1320)] = 30775, - [SMALL_STATE(1321)] = 30783, - [SMALL_STATE(1322)] = 30791, - [SMALL_STATE(1323)] = 30799, - [SMALL_STATE(1324)] = 30807, - [SMALL_STATE(1325)] = 30815, - [SMALL_STATE(1326)] = 30823, - [SMALL_STATE(1327)] = 30831, - [SMALL_STATE(1328)] = 30839, - [SMALL_STATE(1329)] = 30847, - [SMALL_STATE(1330)] = 30855, - [SMALL_STATE(1331)] = 30863, - [SMALL_STATE(1332)] = 30871, - [SMALL_STATE(1333)] = 30879, - [SMALL_STATE(1334)] = 30887, - [SMALL_STATE(1335)] = 30895, - [SMALL_STATE(1336)] = 30903, - [SMALL_STATE(1337)] = 30911, - [SMALL_STATE(1338)] = 30919, - [SMALL_STATE(1339)] = 30927, - [SMALL_STATE(1340)] = 30935, - [SMALL_STATE(1341)] = 30943, - [SMALL_STATE(1342)] = 30951, - [SMALL_STATE(1343)] = 30959, - [SMALL_STATE(1344)] = 30967, - [SMALL_STATE(1345)] = 30975, - [SMALL_STATE(1346)] = 30983, - [SMALL_STATE(1347)] = 30991, - [SMALL_STATE(1348)] = 30999, - [SMALL_STATE(1349)] = 31007, - [SMALL_STATE(1350)] = 31015, - [SMALL_STATE(1351)] = 31023, - [SMALL_STATE(1352)] = 31031, - [SMALL_STATE(1353)] = 31039, - [SMALL_STATE(1354)] = 31047, - [SMALL_STATE(1355)] = 31055, - [SMALL_STATE(1356)] = 31063, - [SMALL_STATE(1357)] = 31071, - [SMALL_STATE(1358)] = 31079, - [SMALL_STATE(1359)] = 31087, - [SMALL_STATE(1360)] = 31095, - [SMALL_STATE(1361)] = 31103, - [SMALL_STATE(1362)] = 31111, - [SMALL_STATE(1363)] = 31119, - [SMALL_STATE(1364)] = 31127, - [SMALL_STATE(1365)] = 31135, - [SMALL_STATE(1366)] = 31143, - [SMALL_STATE(1367)] = 31151, - [SMALL_STATE(1368)] = 31159, - [SMALL_STATE(1369)] = 31167, - [SMALL_STATE(1370)] = 31175, - [SMALL_STATE(1371)] = 31183, - [SMALL_STATE(1372)] = 31191, - [SMALL_STATE(1373)] = 31199, - [SMALL_STATE(1374)] = 31207, - [SMALL_STATE(1375)] = 31215, - [SMALL_STATE(1376)] = 31223, - [SMALL_STATE(1377)] = 31231, + [SMALL_STATE(582)] = 9850, + [SMALL_STATE(583)] = 9892, + [SMALL_STATE(584)] = 9941, + [SMALL_STATE(585)] = 9990, + [SMALL_STATE(586)] = 10037, + [SMALL_STATE(587)] = 10108, + [SMALL_STATE(588)] = 10148, + [SMALL_STATE(589)] = 10188, + [SMALL_STATE(590)] = 10228, + [SMALL_STATE(591)] = 10268, + [SMALL_STATE(592)] = 10308, + [SMALL_STATE(593)] = 10348, + [SMALL_STATE(594)] = 10388, + [SMALL_STATE(595)] = 10428, + [SMALL_STATE(596)] = 10470, + [SMALL_STATE(597)] = 10510, + [SMALL_STATE(598)] = 10550, + [SMALL_STATE(599)] = 10590, + [SMALL_STATE(600)] = 10630, + [SMALL_STATE(601)] = 10670, + [SMALL_STATE(602)] = 10710, + [SMALL_STATE(603)] = 10750, + [SMALL_STATE(604)] = 10790, + [SMALL_STATE(605)] = 10830, + [SMALL_STATE(606)] = 10870, + [SMALL_STATE(607)] = 10910, + [SMALL_STATE(608)] = 10952, + [SMALL_STATE(609)] = 10992, + [SMALL_STATE(610)] = 11032, + [SMALL_STATE(611)] = 11100, + [SMALL_STATE(612)] = 11140, + [SMALL_STATE(613)] = 11180, + [SMALL_STATE(614)] = 11223, + [SMALL_STATE(615)] = 11274, + [SMALL_STATE(616)] = 11343, + [SMALL_STATE(617)] = 11412, + [SMALL_STATE(618)] = 11457, + [SMALL_STATE(619)] = 11526, + [SMALL_STATE(620)] = 11583, + [SMALL_STATE(621)] = 11646, + [SMALL_STATE(622)] = 11705, + [SMALL_STATE(623)] = 11768, + [SMALL_STATE(624)] = 11815, + [SMALL_STATE(625)] = 11876, + [SMALL_STATE(626)] = 11941, + [SMALL_STATE(627)] = 11985, + [SMALL_STATE(628)] = 12029, + [SMALL_STATE(629)] = 12073, + [SMALL_STATE(630)] = 12149, + [SMALL_STATE(631)] = 12191, + [SMALL_STATE(632)] = 12230, + [SMALL_STATE(633)] = 12273, + [SMALL_STATE(634)] = 12310, + [SMALL_STATE(635)] = 12385, + [SMALL_STATE(636)] = 12443, + [SMALL_STATE(637)] = 12485, + [SMALL_STATE(638)] = 12521, + [SMALL_STATE(639)] = 12587, + [SMALL_STATE(640)] = 12653, + [SMALL_STATE(641)] = 12709, + [SMALL_STATE(642)] = 12757, + [SMALL_STATE(643)] = 12811, + [SMALL_STATE(644)] = 12871, + [SMALL_STATE(645)] = 12933, + [SMALL_STATE(646)] = 12975, + [SMALL_STATE(647)] = 13035, + [SMALL_STATE(648)] = 13079, + [SMALL_STATE(649)] = 13145, + [SMALL_STATE(650)] = 13211, + [SMALL_STATE(651)] = 13271, + [SMALL_STATE(652)] = 13307, + [SMALL_STATE(653)] = 13343, + [SMALL_STATE(654)] = 13379, + [SMALL_STATE(655)] = 13445, + [SMALL_STATE(656)] = 13511, + [SMALL_STATE(657)] = 13547, + [SMALL_STATE(658)] = 13604, + [SMALL_STATE(659)] = 13673, + [SMALL_STATE(660)] = 13742, + [SMALL_STATE(661)] = 13811, + [SMALL_STATE(662)] = 13846, + [SMALL_STATE(663)] = 13915, + [SMALL_STATE(664)] = 13950, + [SMALL_STATE(665)] = 13985, + [SMALL_STATE(666)] = 14054, + [SMALL_STATE(667)] = 14091, + [SMALL_STATE(668)] = 14160, + [SMALL_STATE(669)] = 14225, + [SMALL_STATE(670)] = 14294, + [SMALL_STATE(671)] = 14353, + [SMALL_STATE(672)] = 14422, + [SMALL_STATE(673)] = 14475, + [SMALL_STATE(674)] = 14544, + [SMALL_STATE(675)] = 14613, + [SMALL_STATE(676)] = 14682, + [SMALL_STATE(677)] = 14751, + [SMALL_STATE(678)] = 14820, + [SMALL_STATE(679)] = 14889, + [SMALL_STATE(680)] = 14958, + [SMALL_STATE(681)] = 15027, + [SMALL_STATE(682)] = 15096, + [SMALL_STATE(683)] = 15165, + [SMALL_STATE(684)] = 15234, + [SMALL_STATE(685)] = 15303, + [SMALL_STATE(686)] = 15372, + [SMALL_STATE(687)] = 15407, + [SMALL_STATE(688)] = 15476, + [SMALL_STATE(689)] = 15545, + [SMALL_STATE(690)] = 15614, + [SMALL_STATE(691)] = 15683, + [SMALL_STATE(692)] = 15752, + [SMALL_STATE(693)] = 15821, + [SMALL_STATE(694)] = 15890, + [SMALL_STATE(695)] = 15959, + [SMALL_STATE(696)] = 16018, + [SMALL_STATE(697)] = 16052, + [SMALL_STATE(698)] = 16116, + [SMALL_STATE(699)] = 16180, + [SMALL_STATE(700)] = 16214, + [SMALL_STATE(701)] = 16248, + [SMALL_STATE(702)] = 16310, + [SMALL_STATE(703)] = 16344, + [SMALL_STATE(704)] = 16378, + [SMALL_STATE(705)] = 16412, + [SMALL_STATE(706)] = 16462, + [SMALL_STATE(707)] = 16526, + [SMALL_STATE(708)] = 16560, + [SMALL_STATE(709)] = 16626, + [SMALL_STATE(710)] = 16666, + [SMALL_STATE(711)] = 16700, + [SMALL_STATE(712)] = 16764, + [SMALL_STATE(713)] = 16828, + [SMALL_STATE(714)] = 16878, + [SMALL_STATE(715)] = 16942, + [SMALL_STATE(716)] = 16980, + [SMALL_STATE(717)] = 17044, + [SMALL_STATE(718)] = 17108, + [SMALL_STATE(719)] = 17146, + [SMALL_STATE(720)] = 17202, + [SMALL_STATE(721)] = 17242, + [SMALL_STATE(722)] = 17305, + [SMALL_STATE(723)] = 17368, + [SMALL_STATE(724)] = 17431, + [SMALL_STATE(725)] = 17486, + [SMALL_STATE(726)] = 17549, + [SMALL_STATE(727)] = 17612, + [SMALL_STATE(728)] = 17673, + [SMALL_STATE(729)] = 17736, + [SMALL_STATE(730)] = 17799, + [SMALL_STATE(731)] = 17862, + [SMALL_STATE(732)] = 17925, + [SMALL_STATE(733)] = 17958, + [SMALL_STATE(734)] = 18021, + [SMALL_STATE(735)] = 18054, + [SMALL_STATE(736)] = 18117, + [SMALL_STATE(737)] = 18180, + [SMALL_STATE(738)] = 18241, + [SMALL_STATE(739)] = 18304, + [SMALL_STATE(740)] = 18367, + [SMALL_STATE(741)] = 18430, + [SMALL_STATE(742)] = 18485, + [SMALL_STATE(743)] = 18518, + [SMALL_STATE(744)] = 18581, + [SMALL_STATE(745)] = 18644, + [SMALL_STATE(746)] = 18677, + [SMALL_STATE(747)] = 18740, + [SMALL_STATE(748)] = 18803, + [SMALL_STATE(749)] = 18866, + [SMALL_STATE(750)] = 18929, + [SMALL_STATE(751)] = 18992, + [SMALL_STATE(752)] = 19055, + [SMALL_STATE(753)] = 19118, + [SMALL_STATE(754)] = 19181, + [SMALL_STATE(755)] = 19244, + [SMALL_STATE(756)] = 19307, + [SMALL_STATE(757)] = 19370, + [SMALL_STATE(758)] = 19433, + [SMALL_STATE(759)] = 19496, + [SMALL_STATE(760)] = 19559, + [SMALL_STATE(761)] = 19622, + [SMALL_STATE(762)] = 19677, + [SMALL_STATE(763)] = 19732, + [SMALL_STATE(764)] = 19795, + [SMALL_STATE(765)] = 19847, + [SMALL_STATE(766)] = 19899, + [SMALL_STATE(767)] = 19931, + [SMALL_STATE(768)] = 19965, + [SMALL_STATE(769)] = 20025, + [SMALL_STATE(770)] = 20077, + [SMALL_STATE(771)] = 20129, + [SMALL_STATE(772)] = 20181, + [SMALL_STATE(773)] = 20233, + [SMALL_STATE(774)] = 20265, + [SMALL_STATE(775)] = 20317, + [SMALL_STATE(776)] = 20372, + [SMALL_STATE(777)] = 20427, + [SMALL_STATE(778)] = 20468, + [SMALL_STATE(779)] = 20523, + [SMALL_STATE(780)] = 20572, + [SMALL_STATE(781)] = 20627, + [SMALL_STATE(782)] = 20675, + [SMALL_STATE(783)] = 20729, + [SMALL_STATE(784)] = 20781, + [SMALL_STATE(785)] = 20835, + [SMALL_STATE(786)] = 20883, + [SMALL_STATE(787)] = 20937, + [SMALL_STATE(788)] = 20985, + [SMALL_STATE(789)] = 21039, + [SMALL_STATE(790)] = 21085, + [SMALL_STATE(791)] = 21133, + [SMALL_STATE(792)] = 21187, + [SMALL_STATE(793)] = 21233, + [SMALL_STATE(794)] = 21287, + [SMALL_STATE(795)] = 21333, + [SMALL_STATE(796)] = 21381, + [SMALL_STATE(797)] = 21427, + [SMALL_STATE(798)] = 21473, + [SMALL_STATE(799)] = 21519, + [SMALL_STATE(800)] = 21565, + [SMALL_STATE(801)] = 21613, + [SMALL_STATE(802)] = 21664, + [SMALL_STATE(803)] = 21713, + [SMALL_STATE(804)] = 21764, + [SMALL_STATE(805)] = 21813, + [SMALL_STATE(806)] = 21862, + [SMALL_STATE(807)] = 21911, + [SMALL_STATE(808)] = 21960, + [SMALL_STATE(809)] = 22009, + [SMALL_STATE(810)] = 22055, + [SMALL_STATE(811)] = 22107, + [SMALL_STATE(812)] = 22159, + [SMALL_STATE(813)] = 22201, + [SMALL_STATE(814)] = 22243, + [SMALL_STATE(815)] = 22285, + [SMALL_STATE(816)] = 22337, + [SMALL_STATE(817)] = 22379, + [SMALL_STATE(818)] = 22425, + [SMALL_STATE(819)] = 22458, + [SMALL_STATE(820)] = 22499, + [SMALL_STATE(821)] = 22538, + [SMALL_STATE(822)] = 22581, + [SMALL_STATE(823)] = 22626, + [SMALL_STATE(824)] = 22671, + [SMALL_STATE(825)] = 22713, + [SMALL_STATE(826)] = 22753, + [SMALL_STATE(827)] = 22787, + [SMALL_STATE(828)] = 22827, + [SMALL_STATE(829)] = 22863, + [SMALL_STATE(830)] = 22905, + [SMALL_STATE(831)] = 22945, + [SMALL_STATE(832)] = 22982, + [SMALL_STATE(833)] = 23019, + [SMALL_STATE(834)] = 23056, + [SMALL_STATE(835)] = 23093, + [SMALL_STATE(836)] = 23130, + [SMALL_STATE(837)] = 23155, + [SMALL_STATE(838)] = 23192, + [SMALL_STATE(839)] = 23217, + [SMALL_STATE(840)] = 23250, + [SMALL_STATE(841)] = 23287, + [SMALL_STATE(842)] = 23326, + [SMALL_STATE(843)] = 23363, + [SMALL_STATE(844)] = 23390, + [SMALL_STATE(845)] = 23427, + [SMALL_STATE(846)] = 23464, + [SMALL_STATE(847)] = 23506, + [SMALL_STATE(848)] = 23548, + [SMALL_STATE(849)] = 23574, + [SMALL_STATE(850)] = 23616, + [SMALL_STATE(851)] = 23658, + [SMALL_STATE(852)] = 23700, + [SMALL_STATE(853)] = 23742, + [SMALL_STATE(854)] = 23784, + [SMALL_STATE(855)] = 23826, + [SMALL_STATE(856)] = 23859, + [SMALL_STATE(857)] = 23892, + [SMALL_STATE(858)] = 23929, + [SMALL_STATE(859)] = 23957, + [SMALL_STATE(860)] = 23991, + [SMALL_STATE(861)] = 24025, + [SMALL_STATE(862)] = 24059, + [SMALL_STATE(863)] = 24095, + [SMALL_STATE(864)] = 24131, + [SMALL_STATE(865)] = 24167, + [SMALL_STATE(866)] = 24203, + [SMALL_STATE(867)] = 24233, + [SMALL_STATE(868)] = 24267, + [SMALL_STATE(869)] = 24299, + [SMALL_STATE(870)] = 24333, + [SMALL_STATE(871)] = 24364, + [SMALL_STATE(872)] = 24397, + [SMALL_STATE(873)] = 24430, + [SMALL_STATE(874)] = 24461, + [SMALL_STATE(875)] = 24492, + [SMALL_STATE(876)] = 24519, + [SMALL_STATE(877)] = 24552, + [SMALL_STATE(878)] = 24583, + [SMALL_STATE(879)] = 24614, + [SMALL_STATE(880)] = 24647, + [SMALL_STATE(881)] = 24680, + [SMALL_STATE(882)] = 24713, + [SMALL_STATE(883)] = 24744, + [SMALL_STATE(884)] = 24772, + [SMALL_STATE(885)] = 24804, + [SMALL_STATE(886)] = 24828, + [SMALL_STATE(887)] = 24860, + [SMALL_STATE(888)] = 24888, + [SMALL_STATE(889)] = 24918, + [SMALL_STATE(890)] = 24948, + [SMALL_STATE(891)] = 24980, + [SMALL_STATE(892)] = 25010, + [SMALL_STATE(893)] = 25045, + [SMALL_STATE(894)] = 25070, + [SMALL_STATE(895)] = 25095, + [SMALL_STATE(896)] = 25124, + [SMALL_STATE(897)] = 25159, + [SMALL_STATE(898)] = 25180, + [SMALL_STATE(899)] = 25205, + [SMALL_STATE(900)] = 25230, + [SMALL_STATE(901)] = 25255, + [SMALL_STATE(902)] = 25276, + [SMALL_STATE(903)] = 25301, + [SMALL_STATE(904)] = 25325, + [SMALL_STATE(905)] = 25347, + [SMALL_STATE(906)] = 25371, + [SMALL_STATE(907)] = 25399, + [SMALL_STATE(908)] = 25421, + [SMALL_STATE(909)] = 25443, + [SMALL_STATE(910)] = 25459, + [SMALL_STATE(911)] = 25475, + [SMALL_STATE(912)] = 25497, + [SMALL_STATE(913)] = 25519, + [SMALL_STATE(914)] = 25541, + [SMALL_STATE(915)] = 25563, + [SMALL_STATE(916)] = 25585, + [SMALL_STATE(917)] = 25607, + [SMALL_STATE(918)] = 25629, + [SMALL_STATE(919)] = 25651, + [SMALL_STATE(920)] = 25673, + [SMALL_STATE(921)] = 25695, + [SMALL_STATE(922)] = 25717, + [SMALL_STATE(923)] = 25739, + [SMALL_STATE(924)] = 25755, + [SMALL_STATE(925)] = 25777, + [SMALL_STATE(926)] = 25799, + [SMALL_STATE(927)] = 25820, + [SMALL_STATE(928)] = 25841, + [SMALL_STATE(929)] = 25862, + [SMALL_STATE(930)] = 25891, + [SMALL_STATE(931)] = 25920, + [SMALL_STATE(932)] = 25949, + [SMALL_STATE(933)] = 25978, + [SMALL_STATE(934)] = 26000, + [SMALL_STATE(935)] = 26020, + [SMALL_STATE(936)] = 26044, + [SMALL_STATE(937)] = 26066, + [SMALL_STATE(938)] = 26090, + [SMALL_STATE(939)] = 26110, + [SMALL_STATE(940)] = 26124, + [SMALL_STATE(941)] = 26138, + [SMALL_STATE(942)] = 26152, + [SMALL_STATE(943)] = 26166, + [SMALL_STATE(944)] = 26180, + [SMALL_STATE(945)] = 26193, + [SMALL_STATE(946)] = 26206, + [SMALL_STATE(947)] = 26229, + [SMALL_STATE(948)] = 26242, + [SMALL_STATE(949)] = 26255, + [SMALL_STATE(950)] = 26272, + [SMALL_STATE(951)] = 26285, + [SMALL_STATE(952)] = 26302, + [SMALL_STATE(953)] = 26319, + [SMALL_STATE(954)] = 26336, + [SMALL_STATE(955)] = 26357, + [SMALL_STATE(956)] = 26374, + [SMALL_STATE(957)] = 26387, + [SMALL_STATE(958)] = 26400, + [SMALL_STATE(959)] = 26413, + [SMALL_STATE(960)] = 26430, + [SMALL_STATE(961)] = 26447, + [SMALL_STATE(962)] = 26460, + [SMALL_STATE(963)] = 26481, + [SMALL_STATE(964)] = 26504, + [SMALL_STATE(965)] = 26521, + [SMALL_STATE(966)] = 26534, + [SMALL_STATE(967)] = 26547, + [SMALL_STATE(968)] = 26568, + [SMALL_STATE(969)] = 26585, + [SMALL_STATE(970)] = 26602, + [SMALL_STATE(971)] = 26615, + [SMALL_STATE(972)] = 26632, + [SMALL_STATE(973)] = 26645, + [SMALL_STATE(974)] = 26662, + [SMALL_STATE(975)] = 26679, + [SMALL_STATE(976)] = 26702, + [SMALL_STATE(977)] = 26715, + [SMALL_STATE(978)] = 26738, + [SMALL_STATE(979)] = 26759, + [SMALL_STATE(980)] = 26780, + [SMALL_STATE(981)] = 26797, + [SMALL_STATE(982)] = 26820, + [SMALL_STATE(983)] = 26833, + [SMALL_STATE(984)] = 26854, + [SMALL_STATE(985)] = 26877, + [SMALL_STATE(986)] = 26894, + [SMALL_STATE(987)] = 26907, + [SMALL_STATE(988)] = 26927, + [SMALL_STATE(989)] = 26939, + [SMALL_STATE(990)] = 26955, + [SMALL_STATE(991)] = 26971, + [SMALL_STATE(992)] = 26991, + [SMALL_STATE(993)] = 27005, + [SMALL_STATE(994)] = 27021, + [SMALL_STATE(995)] = 27041, + [SMALL_STATE(996)] = 27061, + [SMALL_STATE(997)] = 27081, + [SMALL_STATE(998)] = 27101, + [SMALL_STATE(999)] = 27117, + [SMALL_STATE(1000)] = 27137, + [SMALL_STATE(1001)] = 27157, + [SMALL_STATE(1002)] = 27175, + [SMALL_STATE(1003)] = 27191, + [SMALL_STATE(1004)] = 27211, + [SMALL_STATE(1005)] = 27231, + [SMALL_STATE(1006)] = 27251, + [SMALL_STATE(1007)] = 27267, + [SMALL_STATE(1008)] = 27287, + [SMALL_STATE(1009)] = 27307, + [SMALL_STATE(1010)] = 27323, + [SMALL_STATE(1011)] = 27339, + [SMALL_STATE(1012)] = 27359, + [SMALL_STATE(1013)] = 27379, + [SMALL_STATE(1014)] = 27396, + [SMALL_STATE(1015)] = 27409, + [SMALL_STATE(1016)] = 27426, + [SMALL_STATE(1017)] = 27437, + [SMALL_STATE(1018)] = 27454, + [SMALL_STATE(1019)] = 27471, + [SMALL_STATE(1020)] = 27486, + [SMALL_STATE(1021)] = 27503, + [SMALL_STATE(1022)] = 27520, + [SMALL_STATE(1023)] = 27535, + [SMALL_STATE(1024)] = 27552, + [SMALL_STATE(1025)] = 27569, + [SMALL_STATE(1026)] = 27586, + [SMALL_STATE(1027)] = 27601, + [SMALL_STATE(1028)] = 27618, + [SMALL_STATE(1029)] = 27633, + [SMALL_STATE(1030)] = 27650, + [SMALL_STATE(1031)] = 27665, + [SMALL_STATE(1032)] = 27682, + [SMALL_STATE(1033)] = 27699, + [SMALL_STATE(1034)] = 27710, + [SMALL_STATE(1035)] = 27727, + [SMALL_STATE(1036)] = 27742, + [SMALL_STATE(1037)] = 27757, + [SMALL_STATE(1038)] = 27774, + [SMALL_STATE(1039)] = 27789, + [SMALL_STATE(1040)] = 27800, + [SMALL_STATE(1041)] = 27817, + [SMALL_STATE(1042)] = 27832, + [SMALL_STATE(1043)] = 27849, + [SMALL_STATE(1044)] = 27866, + [SMALL_STATE(1045)] = 27883, + [SMALL_STATE(1046)] = 27900, + [SMALL_STATE(1047)] = 27915, + [SMALL_STATE(1048)] = 27932, + [SMALL_STATE(1049)] = 27947, + [SMALL_STATE(1050)] = 27964, + [SMALL_STATE(1051)] = 27981, + [SMALL_STATE(1052)] = 27996, + [SMALL_STATE(1053)] = 28011, + [SMALL_STATE(1054)] = 28026, + [SMALL_STATE(1055)] = 28041, + [SMALL_STATE(1056)] = 28058, + [SMALL_STATE(1057)] = 28075, + [SMALL_STATE(1058)] = 28090, + [SMALL_STATE(1059)] = 28103, + [SMALL_STATE(1060)] = 28118, + [SMALL_STATE(1061)] = 28135, + [SMALL_STATE(1062)] = 28146, + [SMALL_STATE(1063)] = 28157, + [SMALL_STATE(1064)] = 28174, + [SMALL_STATE(1065)] = 28189, + [SMALL_STATE(1066)] = 28206, + [SMALL_STATE(1067)] = 28221, + [SMALL_STATE(1068)] = 28236, + [SMALL_STATE(1069)] = 28251, + [SMALL_STATE(1070)] = 28268, + [SMALL_STATE(1071)] = 28282, + [SMALL_STATE(1072)] = 28296, + [SMALL_STATE(1073)] = 28310, + [SMALL_STATE(1074)] = 28320, + [SMALL_STATE(1075)] = 28330, + [SMALL_STATE(1076)] = 28344, + [SMALL_STATE(1077)] = 28358, + [SMALL_STATE(1078)] = 28372, + [SMALL_STATE(1079)] = 28386, + [SMALL_STATE(1080)] = 28400, + [SMALL_STATE(1081)] = 28414, + [SMALL_STATE(1082)] = 28428, + [SMALL_STATE(1083)] = 28438, + [SMALL_STATE(1084)] = 28452, + [SMALL_STATE(1085)] = 28466, + [SMALL_STATE(1086)] = 28480, + [SMALL_STATE(1087)] = 28490, + [SMALL_STATE(1088)] = 28504, + [SMALL_STATE(1089)] = 28518, + [SMALL_STATE(1090)] = 28532, + [SMALL_STATE(1091)] = 28546, + [SMALL_STATE(1092)] = 28556, + [SMALL_STATE(1093)] = 28570, + [SMALL_STATE(1094)] = 28584, + [SMALL_STATE(1095)] = 28598, + [SMALL_STATE(1096)] = 28612, + [SMALL_STATE(1097)] = 28626, + [SMALL_STATE(1098)] = 28640, + [SMALL_STATE(1099)] = 28654, + [SMALL_STATE(1100)] = 28668, + [SMALL_STATE(1101)] = 28682, + [SMALL_STATE(1102)] = 28694, + [SMALL_STATE(1103)] = 28708, + [SMALL_STATE(1104)] = 28722, + [SMALL_STATE(1105)] = 28736, + [SMALL_STATE(1106)] = 28750, + [SMALL_STATE(1107)] = 28764, + [SMALL_STATE(1108)] = 28778, + [SMALL_STATE(1109)] = 28792, + [SMALL_STATE(1110)] = 28806, + [SMALL_STATE(1111)] = 28820, + [SMALL_STATE(1112)] = 28834, + [SMALL_STATE(1113)] = 28848, + [SMALL_STATE(1114)] = 28862, + [SMALL_STATE(1115)] = 28876, + [SMALL_STATE(1116)] = 28890, + [SMALL_STATE(1117)] = 28904, + [SMALL_STATE(1118)] = 28918, + [SMALL_STATE(1119)] = 28928, + [SMALL_STATE(1120)] = 28942, + [SMALL_STATE(1121)] = 28956, + [SMALL_STATE(1122)] = 28970, + [SMALL_STATE(1123)] = 28984, + [SMALL_STATE(1124)] = 28998, + [SMALL_STATE(1125)] = 29012, + [SMALL_STATE(1126)] = 29026, + [SMALL_STATE(1127)] = 29036, + [SMALL_STATE(1128)] = 29050, + [SMALL_STATE(1129)] = 29064, + [SMALL_STATE(1130)] = 29078, + [SMALL_STATE(1131)] = 29092, + [SMALL_STATE(1132)] = 29106, + [SMALL_STATE(1133)] = 29118, + [SMALL_STATE(1134)] = 29132, + [SMALL_STATE(1135)] = 29146, + [SMALL_STATE(1136)] = 29156, + [SMALL_STATE(1137)] = 29170, + [SMALL_STATE(1138)] = 29184, + [SMALL_STATE(1139)] = 29198, + [SMALL_STATE(1140)] = 29212, + [SMALL_STATE(1141)] = 29226, + [SMALL_STATE(1142)] = 29240, + [SMALL_STATE(1143)] = 29254, + [SMALL_STATE(1144)] = 29268, + [SMALL_STATE(1145)] = 29282, + [SMALL_STATE(1146)] = 29296, + [SMALL_STATE(1147)] = 29310, + [SMALL_STATE(1148)] = 29324, + [SMALL_STATE(1149)] = 29338, + [SMALL_STATE(1150)] = 29352, + [SMALL_STATE(1151)] = 29366, + [SMALL_STATE(1152)] = 29380, + [SMALL_STATE(1153)] = 29394, + [SMALL_STATE(1154)] = 29408, + [SMALL_STATE(1155)] = 29422, + [SMALL_STATE(1156)] = 29436, + [SMALL_STATE(1157)] = 29450, + [SMALL_STATE(1158)] = 29464, + [SMALL_STATE(1159)] = 29478, + [SMALL_STATE(1160)] = 29492, + [SMALL_STATE(1161)] = 29506, + [SMALL_STATE(1162)] = 29520, + [SMALL_STATE(1163)] = 29534, + [SMALL_STATE(1164)] = 29548, + [SMALL_STATE(1165)] = 29562, + [SMALL_STATE(1166)] = 29576, + [SMALL_STATE(1167)] = 29586, + [SMALL_STATE(1168)] = 29596, + [SMALL_STATE(1169)] = 29610, + [SMALL_STATE(1170)] = 29624, + [SMALL_STATE(1171)] = 29638, + [SMALL_STATE(1172)] = 29652, + [SMALL_STATE(1173)] = 29662, + [SMALL_STATE(1174)] = 29676, + [SMALL_STATE(1175)] = 29690, + [SMALL_STATE(1176)] = 29704, + [SMALL_STATE(1177)] = 29714, + [SMALL_STATE(1178)] = 29728, + [SMALL_STATE(1179)] = 29742, + [SMALL_STATE(1180)] = 29756, + [SMALL_STATE(1181)] = 29770, + [SMALL_STATE(1182)] = 29784, + [SMALL_STATE(1183)] = 29798, + [SMALL_STATE(1184)] = 29809, + [SMALL_STATE(1185)] = 29820, + [SMALL_STATE(1186)] = 29829, + [SMALL_STATE(1187)] = 29838, + [SMALL_STATE(1188)] = 29847, + [SMALL_STATE(1189)] = 29856, + [SMALL_STATE(1190)] = 29865, + [SMALL_STATE(1191)] = 29874, + [SMALL_STATE(1192)] = 29883, + [SMALL_STATE(1193)] = 29892, + [SMALL_STATE(1194)] = 29903, + [SMALL_STATE(1195)] = 29914, + [SMALL_STATE(1196)] = 29925, + [SMALL_STATE(1197)] = 29934, + [SMALL_STATE(1198)] = 29945, + [SMALL_STATE(1199)] = 29954, + [SMALL_STATE(1200)] = 29965, + [SMALL_STATE(1201)] = 29976, + [SMALL_STATE(1202)] = 29985, + [SMALL_STATE(1203)] = 29994, + [SMALL_STATE(1204)] = 30005, + [SMALL_STATE(1205)] = 30016, + [SMALL_STATE(1206)] = 30027, + [SMALL_STATE(1207)] = 30036, + [SMALL_STATE(1208)] = 30045, + [SMALL_STATE(1209)] = 30056, + [SMALL_STATE(1210)] = 30067, + [SMALL_STATE(1211)] = 30078, + [SMALL_STATE(1212)] = 30089, + [SMALL_STATE(1213)] = 30098, + [SMALL_STATE(1214)] = 30109, + [SMALL_STATE(1215)] = 30120, + [SMALL_STATE(1216)] = 30129, + [SMALL_STATE(1217)] = 30140, + [SMALL_STATE(1218)] = 30151, + [SMALL_STATE(1219)] = 30162, + [SMALL_STATE(1220)] = 30173, + [SMALL_STATE(1221)] = 30184, + [SMALL_STATE(1222)] = 30195, + [SMALL_STATE(1223)] = 30206, + [SMALL_STATE(1224)] = 30217, + [SMALL_STATE(1225)] = 30228, + [SMALL_STATE(1226)] = 30239, + [SMALL_STATE(1227)] = 30250, + [SMALL_STATE(1228)] = 30261, + [SMALL_STATE(1229)] = 30272, + [SMALL_STATE(1230)] = 30283, + [SMALL_STATE(1231)] = 30294, + [SMALL_STATE(1232)] = 30303, + [SMALL_STATE(1233)] = 30314, + [SMALL_STATE(1234)] = 30325, + [SMALL_STATE(1235)] = 30334, + [SMALL_STATE(1236)] = 30345, + [SMALL_STATE(1237)] = 30356, + [SMALL_STATE(1238)] = 30367, + [SMALL_STATE(1239)] = 30376, + [SMALL_STATE(1240)] = 30387, + [SMALL_STATE(1241)] = 30398, + [SMALL_STATE(1242)] = 30409, + [SMALL_STATE(1243)] = 30418, + [SMALL_STATE(1244)] = 30429, + [SMALL_STATE(1245)] = 30438, + [SMALL_STATE(1246)] = 30447, + [SMALL_STATE(1247)] = 30458, + [SMALL_STATE(1248)] = 30467, + [SMALL_STATE(1249)] = 30478, + [SMALL_STATE(1250)] = 30489, + [SMALL_STATE(1251)] = 30500, + [SMALL_STATE(1252)] = 30511, + [SMALL_STATE(1253)] = 30522, + [SMALL_STATE(1254)] = 30531, + [SMALL_STATE(1255)] = 30542, + [SMALL_STATE(1256)] = 30551, + [SMALL_STATE(1257)] = 30560, + [SMALL_STATE(1258)] = 30569, + [SMALL_STATE(1259)] = 30578, + [SMALL_STATE(1260)] = 30589, + [SMALL_STATE(1261)] = 30600, + [SMALL_STATE(1262)] = 30611, + [SMALL_STATE(1263)] = 30622, + [SMALL_STATE(1264)] = 30631, + [SMALL_STATE(1265)] = 30640, + [SMALL_STATE(1266)] = 30651, + [SMALL_STATE(1267)] = 30662, + [SMALL_STATE(1268)] = 30673, + [SMALL_STATE(1269)] = 30684, + [SMALL_STATE(1270)] = 30695, + [SMALL_STATE(1271)] = 30706, + [SMALL_STATE(1272)] = 30715, + [SMALL_STATE(1273)] = 30726, + [SMALL_STATE(1274)] = 30737, + [SMALL_STATE(1275)] = 30746, + [SMALL_STATE(1276)] = 30755, + [SMALL_STATE(1277)] = 30764, + [SMALL_STATE(1278)] = 30775, + [SMALL_STATE(1279)] = 30784, + [SMALL_STATE(1280)] = 30795, + [SMALL_STATE(1281)] = 30806, + [SMALL_STATE(1282)] = 30817, + [SMALL_STATE(1283)] = 30826, + [SMALL_STATE(1284)] = 30837, + [SMALL_STATE(1285)] = 30848, + [SMALL_STATE(1286)] = 30859, + [SMALL_STATE(1287)] = 30868, + [SMALL_STATE(1288)] = 30879, + [SMALL_STATE(1289)] = 30890, + [SMALL_STATE(1290)] = 30901, + [SMALL_STATE(1291)] = 30912, + [SMALL_STATE(1292)] = 30923, + [SMALL_STATE(1293)] = 30934, + [SMALL_STATE(1294)] = 30945, + [SMALL_STATE(1295)] = 30954, + [SMALL_STATE(1296)] = 30965, + [SMALL_STATE(1297)] = 30976, + [SMALL_STATE(1298)] = 30985, + [SMALL_STATE(1299)] = 30996, + [SMALL_STATE(1300)] = 31007, + [SMALL_STATE(1301)] = 31018, + [SMALL_STATE(1302)] = 31029, + [SMALL_STATE(1303)] = 31038, + [SMALL_STATE(1304)] = 31049, + [SMALL_STATE(1305)] = 31060, + [SMALL_STATE(1306)] = 31068, + [SMALL_STATE(1307)] = 31076, + [SMALL_STATE(1308)] = 31084, + [SMALL_STATE(1309)] = 31092, + [SMALL_STATE(1310)] = 31100, + [SMALL_STATE(1311)] = 31108, + [SMALL_STATE(1312)] = 31116, + [SMALL_STATE(1313)] = 31124, + [SMALL_STATE(1314)] = 31132, + [SMALL_STATE(1315)] = 31140, + [SMALL_STATE(1316)] = 31148, + [SMALL_STATE(1317)] = 31156, + [SMALL_STATE(1318)] = 31164, + [SMALL_STATE(1319)] = 31172, + [SMALL_STATE(1320)] = 31180, + [SMALL_STATE(1321)] = 31188, + [SMALL_STATE(1322)] = 31196, + [SMALL_STATE(1323)] = 31204, + [SMALL_STATE(1324)] = 31212, + [SMALL_STATE(1325)] = 31220, + [SMALL_STATE(1326)] = 31228, + [SMALL_STATE(1327)] = 31236, + [SMALL_STATE(1328)] = 31244, + [SMALL_STATE(1329)] = 31252, + [SMALL_STATE(1330)] = 31260, + [SMALL_STATE(1331)] = 31268, + [SMALL_STATE(1332)] = 31276, + [SMALL_STATE(1333)] = 31284, + [SMALL_STATE(1334)] = 31292, + [SMALL_STATE(1335)] = 31300, + [SMALL_STATE(1336)] = 31308, + [SMALL_STATE(1337)] = 31316, + [SMALL_STATE(1338)] = 31324, + [SMALL_STATE(1339)] = 31332, + [SMALL_STATE(1340)] = 31340, + [SMALL_STATE(1341)] = 31348, + [SMALL_STATE(1342)] = 31356, + [SMALL_STATE(1343)] = 31364, + [SMALL_STATE(1344)] = 31372, + [SMALL_STATE(1345)] = 31380, + [SMALL_STATE(1346)] = 31388, + [SMALL_STATE(1347)] = 31396, + [SMALL_STATE(1348)] = 31404, + [SMALL_STATE(1349)] = 31412, + [SMALL_STATE(1350)] = 31420, + [SMALL_STATE(1351)] = 31428, + [SMALL_STATE(1352)] = 31436, + [SMALL_STATE(1353)] = 31444, + [SMALL_STATE(1354)] = 31452, + [SMALL_STATE(1355)] = 31460, + [SMALL_STATE(1356)] = 31468, + [SMALL_STATE(1357)] = 31476, + [SMALL_STATE(1358)] = 31484, + [SMALL_STATE(1359)] = 31492, + [SMALL_STATE(1360)] = 31500, + [SMALL_STATE(1361)] = 31508, + [SMALL_STATE(1362)] = 31516, + [SMALL_STATE(1363)] = 31524, + [SMALL_STATE(1364)] = 31532, + [SMALL_STATE(1365)] = 31540, + [SMALL_STATE(1366)] = 31548, + [SMALL_STATE(1367)] = 31556, + [SMALL_STATE(1368)] = 31564, + [SMALL_STATE(1369)] = 31572, + [SMALL_STATE(1370)] = 31580, + [SMALL_STATE(1371)] = 31588, + [SMALL_STATE(1372)] = 31596, + [SMALL_STATE(1373)] = 31604, + [SMALL_STATE(1374)] = 31612, + [SMALL_STATE(1375)] = 31620, + [SMALL_STATE(1376)] = 31628, + [SMALL_STATE(1377)] = 31636, + [SMALL_STATE(1378)] = 31644, + [SMALL_STATE(1379)] = 31652, + [SMALL_STATE(1380)] = 31660, + [SMALL_STATE(1381)] = 31668, + [SMALL_STATE(1382)] = 31676, + [SMALL_STATE(1383)] = 31684, + [SMALL_STATE(1384)] = 31692, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -74829,1607 +75102,1614 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(117), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1362), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(888), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(893), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1210), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1025), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(894), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1217), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1, 0, 0), [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1, 0, 0), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(421), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(542), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(542), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(956), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(887), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(117), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(238), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(509), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(238), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(211), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(788), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1359), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1185), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(9), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(373), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(239), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(17), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1231), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1229), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1263), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(167), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(106), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(577), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(208), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1045), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1369), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(911), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(454), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(423), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(136), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(903), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(888), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1323), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(401), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(509), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(462), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1302), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1331), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(730), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(731), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(753), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(568), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1228), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2, 0, 0), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2, 0, 0), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2, 0, 0), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2, 0, 0), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(421), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(561), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(561), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(978), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(893), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(115), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(244), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(505), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(244), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(195), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(785), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1372), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1265), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(9), + [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(377), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(192), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(18), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1235), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1210), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1214), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(149), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(106), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(580), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(193), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1025), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1236), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1376), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(919), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(464), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(425), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(133), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(908), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(894), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1326), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(402), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(505), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(463), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1371), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1374), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(742), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(732), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(766), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(562), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1217), [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 1), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 1), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), - [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 21), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 21), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 23), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 23), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, 0, 24), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, 0, 24), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, 0, 24), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, 0, 24), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 149), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 149), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 0), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 0), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2, 0, 0), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2, 0, 0), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 127), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 127), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 0), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 0), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 133), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 133), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 134), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 134), - [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 136), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 136), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 137), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 137), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 138), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 138), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 139), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 139), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 140), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 140), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 141), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 141), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 142), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 142), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 143), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 143), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 138), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 138), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 144), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 144), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 145), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 145), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 147), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 147), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 151), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 151), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 154), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 154), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 89), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 89), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 155), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 155), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 91), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 91), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 156), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 156), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 157), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 157), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 161), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 161), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 162), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 162), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 163), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 163), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 164), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 164), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 7, 0, 165), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 7, 0, 165), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, 0, 166), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, 0, 166), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 168), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 168), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 169), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 169), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 170), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 170), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 171), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 171), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 93), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 93), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 172), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 172), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, 0, 173), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, 0, 173), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 174), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 174), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 175), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 175), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6, 0, 0), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6, 0, 0), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 20), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 20), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 179), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 179), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 181), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 181), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 182), - [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 182), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 183), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 183), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 184), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 184), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 94), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 94), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 185), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 185), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, 0, 186), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, 0, 186), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 187), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 187), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 199), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 199), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 200), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 200), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 201), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 201), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 206), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 206), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3, 0, 0), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 21), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 21), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5, 0, 0), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 95), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 95), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 57), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 57), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, 0, 24), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, 0, 24), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 96), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 96), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 64), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 64), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, 0, 22), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, 0, 22), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 59), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 59), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3, 0, 0), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 20), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 20), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 20), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 20), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, 0, 20), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, 0, 20), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 20), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 20), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, 0, 40), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, 0, 40), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 100), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 100), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 101), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 101), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 57), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 57), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 58), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 58), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 59), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 59), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 60), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 60), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 23), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 23), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 91), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 91), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 102), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 102), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 103), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 103), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 108), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 108), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 109), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 109), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 110), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 110), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 110), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 110), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 112), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 112), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 108), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 108), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 111), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 111), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 113), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 113), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 114), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 114), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 62), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 62), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 120), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 120), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 121), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 121), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 122), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 122), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 123), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 123), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 62), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 62), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, 0, 62), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, 0, 62), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 62), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 62), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, 0, 71), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, 0, 71), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 126), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 126), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, 0, 0), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, 0, 0), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, 0, 63), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, 0, 63), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 62), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 62), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 60), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 60), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 25), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 25), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 36), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 36), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 12), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, 0, 12), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 35), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 35), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 13), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, 0, 13), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, 0, 205), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, 0, 205), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, 0, 198), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, 0, 198), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, 0, 167), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, 0, 167), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, 0, 180), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, 0, 180), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2, 0, 0), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 2), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(654), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), - [1337] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(961), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 2), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1313), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1348] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(961), - [1352] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(1313), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(143), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, 0, 27), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, 0, 27), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, 0, 104), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, 0, 104), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1, 0, 0), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1, 0, 0), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, 0, 70), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, 0, 70), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(668), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 17), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 17), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 19), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 19), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 54), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 54), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 56), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 56), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 10, 0), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 10, 0), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 10, 2), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 10, 2), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2, 0, 0), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2, 0, 0), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(668), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, 0, 77), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, 0, 77), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(206), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(909), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 30), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 30), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 42), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 42), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 61), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 61), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, 0, 66), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, 0, 66), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, 0, 8), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, 0, 8), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, 0, 32), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, 0, 32), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 68), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 68), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, 0, 5), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, 0, 5), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 85), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 85), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 18), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 18), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 55), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 55), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 115), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 115), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 51), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 51), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 116), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 116), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 80), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 80), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 16), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 16), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 53), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 53), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 52), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 52), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 79), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 79), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 86), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 86), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 78), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 78), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 51), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 51), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 52), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 52), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 53), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 53), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 81), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 81), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 82), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 82), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 55), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 55), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 83), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 83), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 84), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 84), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 2, 0, 87), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 2, 0, 87), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 88), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 88), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 3, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 3, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, 0, 105), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, 0, 105), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 2, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 2, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3, 0, 0), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 79), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 79), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 80), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 80), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 85), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 85), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 86), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 86), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 3, 0, 20), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 3, 0, 20), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, 0, 117), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 117), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, 0, 119), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 119), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 40), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 40), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, 0, 135), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, 0, 135), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, 0, 65), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, 0, 65), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 115), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 115), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 116), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 116), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, 0, 146), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, 0, 146), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 26), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 26), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, 0, 160), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, 0, 160), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expression, 3, 0, 33), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expression, 3, 0, 33), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 34), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 34), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, 17, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, 17, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 44), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 44), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 16), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 16), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 47), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 47), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 48), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 48), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 18), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 18), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 49), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 49), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 50), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 50), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, 0, 6), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, 0, 6), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, 0, 3), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, 0, 3), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4, 0, 0), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 71), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 71), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 40), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 40), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1363), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 28), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 28), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, 0, 178), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, 0, 178), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, 0, 31), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, 0, 31), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 3, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 3, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 194), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 194), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 196), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 196), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 197), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 197), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 202), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 202), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 203), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 203), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 204), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 204), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, 0, 207), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, 0, 207), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 67), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 67), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, 0, 106), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, 0, 106), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 2, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 2, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 4, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 4, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 69), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 69), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 29), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 29), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 28), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_record_pattern_body, 2, 0, 0), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_record_pattern_body, 2, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 107), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2, 0, 0), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1, 0, 0), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 76), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 0), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, 0, 148), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 152), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 97), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, 0, 124), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2, 0, 0), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(957), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, 0, 7), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(918), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(957), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, 0, 130), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, 0, 130), SHIFT_REPEAT(899), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, 0, 39), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2, 0, 0), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, 0, 99), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, 0, 0), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 7), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 5), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, 0, 158), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3, 0, 0), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, 0, 176), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, 0, 176), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, 0, 177), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), - [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(960), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(960), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, 0, 129), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, 0, 131), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, 0, 131), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, 0, 45), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, 0, 189), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, 0, 189), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, 0, 192), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), SHIFT_REPEAT(134), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1218), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1, 0, 0), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_fragment, 1, 0, 0), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2, 0, 0), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(763), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1, 0, 0), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, 0, 38), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 26), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 6), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 10), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, 0, 72), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4, 0, 0), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, 0, 0), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 2), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3, 0, 0), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, 0, 11), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2, 0, 0), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, 0, 37), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 15), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, 0, 41), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, 0, 0), - [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 46), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 46), SHIFT_REPEAT(759), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 153), - [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 153), SHIFT_REPEAT(220), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_receiver_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_receiver_parameter_repeat1, 2, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 87), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 2, 0, 0), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3, 0, 0), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, 0, 73), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 188), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2, 0, 0), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 190), SHIFT_REPEAT(904), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 190), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 191), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_body_repeat1, 2, 0, 0), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_body_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 193), SHIFT_REPEAT(901), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 193), - [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 75), SHIFT_REPEAT(881), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 75), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, 0, 9), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 132), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 20), - [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 98), SHIFT_REPEAT(217), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 98), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, 0, 159), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2, 0, 0), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, 0, 72), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, 0, 11), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, 0, 37), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4, 0, 0), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 74), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, 0, 39), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 15), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, 0, 128), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, 0, 118), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 4, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 45), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3, 0, 0), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_component, 1, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 2), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_component, 2, 0, 0), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3, 0, 0), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2, 0, 0), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, 0, 14), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, 0, 43), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3307] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, 0, 0), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, 0, 195), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5, 0, 0), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2, 0, 0), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, 0, 150), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4, 0, 0), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, 0, 125), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 1), SHIFT(115), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 1), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 1), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 1), SHIFT(244), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 1), SHIFT(195), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 21), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 21), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 23), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 23), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, 0, 24), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, 0, 24), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, 0, 24), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, 0, 24), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 149), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 149), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 20), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 20), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 62), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 62), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2, 0, 0), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2, 0, 0), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 0), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 0), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 59), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 59), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, 0, 63), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, 0, 63), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2, 0, 0), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2, 0, 0), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 57), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 57), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 60), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 60), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 64), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 64), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 20), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 20), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 62), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 62), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 62), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 62), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, 0, 62), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, 0, 62), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 62), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 62), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, 0, 71), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, 0, 71), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, 0, 0), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, 0, 0), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 89), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 89), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 91), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 91), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 93), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 93), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 94), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 94), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5, 0, 0), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5, 0, 0), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 95), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 95), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3, 0, 0), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 21), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 21), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, 0, 24), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, 0, 24), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 96), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 96), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3, 0, 0), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3, 0, 0), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 0), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 0), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 100), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 100), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 101), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 101), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3, 0, 0), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3, 0, 0), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 91), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 91), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 102), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 102), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 103), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 103), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 108), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 108), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 109), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 109), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 110), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 110), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 110), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 110), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 112), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 112), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 108), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 108), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 111), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 111), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 113), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 113), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 114), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 114), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 120), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 120), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 121), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 121), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 122), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 122), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 123), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 123), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, 0, 22), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, 0, 22), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 126), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 126), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 127), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 127), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 0), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 0), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 133), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 133), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 134), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 134), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 136), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 136), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 137), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 137), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 138), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 138), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 139), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 139), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 140), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 140), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 141), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 141), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 142), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 142), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 143), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 143), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 138), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 138), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 144), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 144), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 145), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 145), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 147), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 147), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 151), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 151), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 154), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 154), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 155), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 155), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 156), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 156), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 157), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 157), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 161), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 161), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 162), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 162), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 163), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 163), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 164), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 164), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 7, 0, 165), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 7, 0, 165), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, 0, 166), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, 0, 166), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 168), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 168), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 169), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 169), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 170), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 170), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 172), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 172), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, 0, 173), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, 0, 173), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 174), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 174), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 175), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 175), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6, 0, 0), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 179), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 179), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 181), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 181), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 182), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 182), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 183), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 183), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 184), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 184), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 185), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 185), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, 0, 186), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, 0, 186), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 187), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 187), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 199), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 199), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 200), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 200), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 201), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 201), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 206), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 206), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 20), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 20), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, 0, 0), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 0), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 0), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, 0, 20), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, 0, 20), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 20), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 20), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, 0, 40), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, 0, 40), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 57), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 57), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 58), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 58), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 59), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 59), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 60), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 60), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 23), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 23), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 171), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 171), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 13), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, 0, 13), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 25), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 25), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 35), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 35), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 36), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 36), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 12), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, 0, 12), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, 0, 180), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, 0, 180), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, 0, 198), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, 0, 198), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, 0, 205), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, 0, 205), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, 0, 167), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, 0, 167), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(581), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 2), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(695), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), + [1350] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(953), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 2), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1378), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1361] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(953), + [1365] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(1378), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(144), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(426), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, 0, 27), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, 0, 27), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, 0, 104), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, 0, 104), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, 0, 70), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, 0, 70), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(670), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 17), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 17), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 56), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 56), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 54), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 54), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 19), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 19), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 10, 0), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 10, 0), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3, 0, 0), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(670), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 10, 2), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 10, 2), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, 0, 77), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, 0, 77), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 30), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 30), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 42), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 42), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(201), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(911), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, 0, 66), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, 0, 66), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 61), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 61), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, 0, 8), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, 0, 8), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1, 0, 0), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, 0, 32), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, 0, 32), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 68), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 68), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, 0, 5), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, 0, 5), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 53), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 53), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 52), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 52), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 86), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 86), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 55), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 55), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 51), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 51), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 115), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 115), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 116), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 116), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 80), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 80), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 79), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 79), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 85), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 85), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 18), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 18), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 16), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 16), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 50), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 50), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 26), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 26), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, 0, 65), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, 0, 65), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4, 0, 0), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 2, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 2, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 115), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 115), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 116), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 116), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, 0, 146), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, 0, 146), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, 17, 0), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, 17, 0), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, 0, 160), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, 0, 160), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 44), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 44), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 78), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 78), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2, 0, 0), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 51), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 51), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 52), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 52), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 53), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 53), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 81), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 81), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 82), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 82), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 55), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 55), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 83), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 83), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 84), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 84), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 2, 0, 87), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 2, 0, 87), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 88), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 88), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 16), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 16), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 47), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 47), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 48), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 48), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 18), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 18), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, 0, 3), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, 0, 3), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, 0, 135), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, 0, 135), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, 0, 105), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, 0, 105), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expression, 3, 0, 33), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expression, 3, 0, 33), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, 0, 6), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, 0, 6), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 34), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 34), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 79), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 79), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 80), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 80), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 85), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 85), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 86), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 86), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 3, 0, 20), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 3, 0, 20), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, 0, 117), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 117), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, 0, 119), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 119), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 40), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 40), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 3, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 3, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 49), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 49), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 40), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 40), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 71), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 71), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, 0, 106), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, 0, 106), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 194), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 194), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, 0, 0), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2, 0, 0), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 196), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 196), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 29), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 29), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 3, 0, 0), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 3, 0, 0), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 197), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 197), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 69), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 69), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 2, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 2, 0, 0), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 203), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 203), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 204), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 204), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, 0, 207), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, 0, 207), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, 0, 31), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, 0, 31), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 28), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 28), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 4, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 4, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, 0, 178), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, 0, 178), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 67), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 67), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 202), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 202), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_record_pattern_body, 2, 0, 0), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_record_pattern_body, 2, 0, 0), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 107), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 28), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(627), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(627), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1, 0, 0), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 76), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 152), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, 0, 124), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 97), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, 0, 148), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(973), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1, 0, 0), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(973), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, 0, 7), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, 0, 130), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, 0, 130), SHIFT_REPEAT(909), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, 0, 39), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(982), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1, 0, 0), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, 0, 99), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 7), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 5), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, 0, 0), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, 0, 131), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, 0, 176), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, 0, 158), + [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, 0, 177), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, 0, 45), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, 0, 129), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, 0, 131), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, 0, 189), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, 0, 192), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), SHIFT_REPEAT(142), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1256), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, 0, 176), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3, 0, 0), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_fragment, 1, 0, 0), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(983), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(983), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, 0, 189), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, 0, 38), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 6), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 26), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1, 0, 0), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3, 0, 0), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, 0, 0), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 15), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 10), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, 0, 72), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2, 0, 0), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4, 0, 0), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3, 0, 0), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2, 0, 0), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 2), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, 0, 11), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5, 0, 0), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, 0, 37), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2, 0, 0), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 20), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2, 0, 0), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, 0, 159), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2, 0, 0), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_body_repeat1, 2, 0, 0), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_body_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 188), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_receiver_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_receiver_parameter_repeat1, 2, 0, 0), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(483), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 98), SHIFT_REPEAT(198), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 98), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, 0, 0), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 190), SHIFT_REPEAT(913), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 190), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, 0, 41), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 132), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 191), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, 0, 9), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 153), + [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 153), SHIFT_REPEAT(207), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 46), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 46), SHIFT_REPEAT(772), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 2, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3, 0, 0), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 87), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, 0, 73), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 193), SHIFT_REPEAT(917), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 193), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 75), SHIFT_REPEAT(883), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 75), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 45), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3, 0, 0), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_component, 1, 0, 0), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 2), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, 0, 39), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4, 0, 0), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2, 0, 0), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2, 0, 0), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2, 0, 0), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 4, 0, 0), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, 0, 72), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 5, 0, 0), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4, 0, 0), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, 0, 128), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2, 0, 0), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, 0, 43), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3, 0, 0), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1, 0, 0), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, 0, 11), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3, 0, 0), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, 0, 118), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, 0, 37), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 74), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 15), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, 0, 14), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_component, 2, 0, 0), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, 0, 150), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, 0, 195), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, 0, 125), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3420] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, 0, 0), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), }; #ifdef __cplusplus diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif